Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Morning All
I have a working lookup function as per below.
Below displays the value ok where I get a match ie the lookup is True/works AS EXPECTED
If I don’t get a match I want an alternative result which can be 0
The lookup column that Im displaying is a % column so XERO works fine
I’ve tried various options for an alternative result and its not working.
Any help appreciated.
LOOKUP_LEAN_IX_PERCENTAGE = LOOKUPVALUE(
LEAN_IX[%_Complete]
,LEAN_IX[APPLICATIONID]
,POAP[Lean IX ID_DOD]
)
Jimmy
Solved! Go to Solution.
what about add 0 as the last parameter
LOOKUP_LEAN_IX_PERCENTAGE = LOOKUPVALUE(
LEAN_IX[%_Complete]
,LEAN_IX[APPLICATIONID]
,POAP[Lean IX ID_DOD]
,0)
Proud to be a Super User!
I feel embarrased, why did I not think of this?
Indeed it works perfectly well.
Thanks for the Tip.
Jimmy
you are welcome
Proud to be a Super User!
what about add 0 as the last parameter
LOOKUP_LEAN_IX_PERCENTAGE = LOOKUPVALUE(
LEAN_IX[%_Complete]
,LEAN_IX[APPLICATIONID]
,POAP[Lean IX ID_DOD]
,0)
Proud to be a Super User!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.