Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Using Lookup - Need a manual option if no match found

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

 

 

1 ACCEPTED SOLUTION
ryan_mayu
Super User
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)




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

3 REPLIES 3
Anonymous
Not applicable

@ryan_mayu 

 

I feel embarrased, why did I not think of this?

 

Indeed it works perfectly well.

 

Thanks for the Tip.

 

Jimmy

 

you are welcome





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




ryan_mayu
Super User
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)




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors