The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 |
---|---|
25 | |
10 | |
8 | |
6 | |
6 |
User | Count |
---|---|
31 | |
12 | |
10 | |
10 | |
9 |