Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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 |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
19 | |
14 | |
10 | |
7 |