Forum Discussion
gaddamkrishna
2 years agoNew Member
I want create a new column in Power Query editor using the below dax
I have created below DAX to convert the values from another table using Lookup and concatination in front end. it is working as expected. N_FX Rate = LOOKUPVALUE ( 'FX Rate'[Conversion factor...
wdx223_Daniel
2 years agoCommunity Champion
=#"FX Rate"{[#"year-month-currency"=Text.Format("#[Year]#[Month]#[Invoice currency]",_)]}?[Conversion factor]?
- gaddamkrishna2 years agoNew Member
Hi Daniel- Thanks for your responce.
I have tried with above query and it ran successfully but values are showing null.
= Table.AddColumn(#"Removed Other Columns", "F_X", each #"FX Rate"{[#"year-month-currency"=Text.Format("#[Year1]#[Month1]#[Invoice currency]",_)]}?[Conversion factor]?)Even I have created required fields from FX Rate table.
- wdx223_Daniel2 years agoCommunity Champion
please show us the headers of both tables