The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi Good day
Can anyone help me to change the blank to "Injected" from a lookupvalue column.
Thank you
Solved! Go to Solution.
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 @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!!
Proud to be a 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!!
Proud to be a Super User! | |
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])
)
User | Count |
---|---|
28 | |
12 | |
8 | |
7 | |
5 |
User | Count |
---|---|
34 | |
15 | |
12 | |
7 | |
6 |