Forum Discussion
Anonymous
4 years agoNot applicable
DAX Lookup help
Dear Experts BasicMat = LOOKUPVALUE('Material Master'[basic_material],'Material Master'[mat_id], 'New_Mat'[Model_Number]," ") I have a Material Master Table and New_Mat Table. I need to looku...
- 4 years ago
Hi,
Please check the below picture and the attached pbix file.
I tried to create a sample pbix file like below.
It is for creating a new column.
One thing to note is that 'Material Master'[basic_material] and New_Mat[Model_Number] both column's data type has to be the same.
BasicMat CC = LOOKUPVALUE ( 'Material Master'[basic_material], 'Material Master'[mat_id], New_Mat[Model_Number], New_Mat[Model_Number] )
Jihwan_Kim
Super User
4 years agoHi,
Please check the below picture and the attached pbix file.
I tried to create a sample pbix file like below.
It is for creating a new column.
One thing to note is that 'Material Master'[basic_material] and New_Mat[Model_Number] both column's data type has to be the same.
BasicMat CC =
LOOKUPVALUE (
'Material Master'[basic_material],
'Material Master'[mat_id], New_Mat[Model_Number],
New_Mat[Model_Number]
)