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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
A simple question really. I have the following formula:
IF ( ISBLANK ( LOOKUPVALUE (.....) ), "Text", LOOKUPVALUE (.....))
Is there a more elegant way of writing that, or an alternative formula, so that I do not repeat LOOKUPVALUE twice just to get the correct result?
Solved! Go to Solution.
@SevsBo , You can try using variable and instead of calling lookup function two times you can call variable
Proud to be a Super User! |
|
Hi @SevsBo ,
You can try this DAX:
VAR A = LOOKUPVALUE(...)
RETURN
IF(ISBLANK(A),"Text",A)
Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @SevsBo ,
You can try this DAX:
VAR A = LOOKUPVALUE(...)
RETURN
IF(ISBLANK(A),"Text",A)
Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
@SevsBo , You can try using variable and instead of calling lookup function two times you can call variable
Proud to be a Super User! |
|
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.