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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
does any one know if a function like this exists?
Proud to be a Super User!
Solved! Go to Solution.
There's no such a equivalent function, however you could replicate it with SWITCH.
value = SWITCH( FALSE(), ISBLANK([value1]),[value1] ,ISBLANK([value2]),[value2] ,ISBLANK([value3]),[value3] )
There's no such a equivalent function, however you could replicate it with SWITCH.
value = SWITCH( FALSE(), ISBLANK([value1]),[value1] ,ISBLANK([value2]),[value2] ,ISBLANK([value3]),[value3] )
Now it's possible. Do a quick serch in Google.
Edgard