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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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! |
|
User | Count |
---|---|
98 | |
75 | |
74 | |
49 | |
26 |