Forum Discussion
ChrisPeall
4 years agoNew Member
Lookup help
Hi, I have two tables as per below. What I'm trying to do is assign a new column in the 'Import' table that looks up the DateName in that table, looks up the corresponding DateName in the 'Rate S...
- 4 years ago
ChrisPeall , seem file a new column in invoice
or try like
a new column = MAXX(filter('Rate Sheet', 'Rate Sheet'[DateName] ='Import'[DateName]),'Rate Sheet'[Rate])
refer 4 ways to copy data from one table to another
https://www.youtube.com/watch?v=Wu1mWxR23jU
https://www.youtube.com/watch?v=czNHt7UXIe8 - 4 years ago
Are you creating a measure or a calculated column? I thought you wanted a calculated column
HotChilli
4 years agoCommunity Champion
Are you creating a measure or a calculated column? I thought you wanted a calculated column
ChrisPeall
4 years agoNew Member
.. and that is the problem with picking something up Monday morning that you were looking into Friday evening. You're absolutely right, I should have been creating a calcualted column, and in my haste to continue hit new measure instead! Thank you!