Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.

Reply
gaddamkrishna
New 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],
    'FX Rate'[year-month-currency],
    CONCATENATE (
        CONCATENATE (
            '1 external workforce'[Year],
            '1 external workforce'[Month]
            ),
            '1 external workforce'[Invoice currency]
            )
            )

gaddamkrishna_0-1699270298395.png

Can you please help me to write the same logic in PowerBI M-Query(Power Query Editor). as I have to use this new column in power query editor to append the tables.

3 REPLIES 3
wdx223_Daniel
Super User
Super User

=#"FX Rate"{[#"year-month-currency"=Text.Format("#[Year]#[Month]#[Invoice currency]",_)]}?[Conversion factor]?

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]?)

gaddamkrishna_0-1699353026398.pnggaddamkrishna_1-1699353059434.png

 

 

Even I have created required fields from FX Rate table.

please show us the headers of both tables

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors