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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
AllanBerces
Post Prodigy
Post Prodigy

Lookupvalue with if

Hi Good day

Can anyone help me to change the blank to "Injected" from a lookupvalue column.

 

AllanBerces_0-1719384944604.png

AllanBerces_1-1719384966675.png

Thank you

 

2 ACCEPTED SOLUTIONS
qwasze
New Member

Hi allan,

 

You might want to do:

=IF(
ISBLANK(
LOOKUPVALUE(Sign_OFF[SIGN OFF], Sign_OFF[Job Card], 'BSP TA'[Job Card])
),
"Injected",
LOOKUPVALUE(Sign_OFF[SIGN OFF], Sign_OFF[Job Card], 'BSP TA'[Job Card])
)

View solution in original post

rajendraongole1
Super User
Super User

Hi @AllanBerces - you can try the below function suggested by @qwasze .adding one more another approach with variable: Try below calculated column

 

Base_Scope =
VAR lookupResult = LOOKUPVALUE(sign_off[sign off], sign_off[Job Card], 'BSA TA'[Job card])
RETURN IF(ISBLANK(lookupResult), "Injected", lookupResult)

 

Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!





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
rajendraongole1
Super User
Super User

Hi @AllanBerces - you can try the below function suggested by @qwasze .adding one more another approach with variable: Try below calculated column

 

Base_Scope =
VAR lookupResult = LOOKUPVALUE(sign_off[sign off], sign_off[Job Card], 'BSA TA'[Job card])
RETURN IF(ISBLANK(lookupResult), "Injected", lookupResult)

 

Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!





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

Proud to be a Super User!





qwasze
New Member

Hi allan,

 

You might want to do:

=IF(
ISBLANK(
LOOKUPVALUE(Sign_OFF[SIGN OFF], Sign_OFF[Job Card], 'BSP TA'[Job Card])
),
"Injected",
LOOKUPVALUE(Sign_OFF[SIGN OFF], Sign_OFF[Job Card], 'BSP TA'[Job Card])
)

Hi @qwasze @rajendraongole1 thank you very much, you save my day.

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

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