Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
I'm pulling a status from here Account (sheet) Flex or Go Customer (column).
I'm using an account relationship that both sheets have (Account #).
It's returning the text values correctly, however, it's also turning blanks.
I want to replace the blanks that are being returned with a value from another column in the Account sheet (status).
This is my current formula. How do I adjust this to return the info from the other column if the result is blank?
Solved! Go to Solution.
Wrap the whole thing in a COALESCE() function.
Flex or Go =
COALESCE (
LOOKUPVALUE (
Account[_Flex or Go Customer],
Account[_Account #], 'NPS 2017 Q4'[Account #],
"no data"
),
Account[AlternateValue]
)
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI ReportingAmazing! Just what I needed and I learned something new. Thank you!!
Wrap the whole thing in a COALESCE() function.
Flex or Go =
COALESCE (
LOOKUPVALUE (
Account[_Flex or Go Customer],
Account[_Account #], 'NPS 2017 Q4'[Account #],
"no data"
),
Account[AlternateValue]
)
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI ReportingDon't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 1 |
| User | Count |
|---|---|
| 11 | |
| 10 | |
| 5 | |
| 4 | |
| 4 |