March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi Community,
I need some help to create a Dax formula. As you can see in the table below, in some rows, in my source data, are returning blank in the company name. I'm thinking to create a new column with a condition like: if the company name is blank, look up the same company code and the currency "USD" then return the company name from that row. Can anyone write this in DAX formula so I can put it in Power query in PowerBI?
Company Code | Company Name | Currency | |
Row1 | 3001 | Malaysia | USD |
Row2 | 3001 | Local |
Solved! Go to Solution.
HI @akim1 ,
You can try to use below calculate column formula if it suitable for your requirement:
Condition column = IF ( Table[Company Name] <> BLANK (), [Company Name], CALCULATE ( LASTNONBLANK ( Table[Company Name], [CompanyName] ), FILTER ( ALL ( Table ), [Comany Code] = EARLIER ( Table[Company Code] ) && [Currency] = "USD" ) ) )
Regards,
Xiaoxin Sheng
HI @akim1 ,
You can try to use below calculate column formula if it suitable for your requirement:
Condition column = IF ( Table[Company Name] <> BLANK (), [Company Name], CALCULATE ( LASTNONBLANK ( Table[Company Name], [CompanyName] ), FILTER ( ALL ( Table ), [Comany Code] = EARLIER ( Table[Company Code] ) && [Currency] = "USD" ) ) )
Regards,
Xiaoxin Sheng
You could create a helper table like this:
helper_table = FILTER(SUMMARIZE(original_table, 'original_table'[Company Code], 'original_table'[Currency], 'original_table'[Company]), 'original_table'[Company] <> "")
This will give you unique rows from your original table where the company is not missing. Then create a calculated column in this new table: code_currency = 'helper_table'[Company Code] & 'helper_table'[Currency]
Then in your original table you can do the lookup:
company_revised = LOOKUPVALUE('helper_table'[Company], 'helper_table'[code_currency], 'original_table'[Company Code] & 'original_table'[Currency]
If you upload your file I can show you
Thank you for the reply. Do you think if there is any way to do this without creating an additional table? I want to make this simple as possible..
Could be, but nothing that I know of unfortunately.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
134 | |
91 | |
90 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
72 | |
68 |