Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi All,
I need DAX to return the first non null column cycling through 3 columns, they childs of each other. So starting at GEN_3 as its the lowest child.
e.g [currency Gen_1],[currency Gen_2],[currency Gen_3]
AUD BGN NULL
USD NULL NULL
CAD EUR HKD
so the column would return currency = BGN
USD
HKD
Thanks for any assistance.
Solved! Go to Solution.
What about this ?
Measure =
IF (
NOT ( ISBLANK ( [currency Gen_1] ) ),
[currency Gen_1],
IF ( NOT ( ISBLANK ( [currency Gen_2] ) ), [currency Gen_2], [currency Gen_3] )
)
What about this ?
Measure =
IF (
NOT ( ISBLANK ( [currency Gen_1] ) ),
[currency Gen_1],
IF ( NOT ( ISBLANK ( [currency Gen_2] ) ), [currency Gen_2], [currency Gen_3] )
)
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 10 | |
| 9 | |
| 8 | |
| 7 | |
| 7 |