Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
i have two tables Confirmation_Advance, Risk Deliveries . both values have similar values . so i created lookup functions based confiremed , Not Confiremed. after lookup i want to fill all blank values as a Not Confiremed.
here i am pasted sample and measures
Confirmation_Advance table:
PO Num Mat Plant PO&mat Confiremd
450 40.1A RS7Z 45040.1A Confiremed
452 40.1B RS7Z 45040.1B Confiremed
450 40.1C LT01 45040.1C Not Confiremed
455 40.1D CHO4 45040.1H Confiremed
458 40.1F MT01 45040.1M Not Confiremed
462 40.1G RS7Z 45040.1K Confiremed
i have created two calculated column
PO Num Mat Plant PO&mat
450 40.1A RS7Z 45040.1A
452 40.1B RS7Z 45040.1B
450 40.1C LT01 45040.1C
455 40.1D CHO4 45040.1H
458 40.1F MT01 45040.1M
462 40.1G RS7Z 45040.1K
455 40.1D CHO4 45040.1H
478 40.1F MT01 45040.1S
482 40.1G RS7Z 45040.1G
PO Num Mat Plant PO&mat Confirmation
450 40.1A RS7Z 45040.1A Confiremed
452 40.1B RS7Z 45040.1B Confiremed
450 40.1C LT01 45040.1C Not Confiremed
455 40.1D CHO4 45040.1H Confiremed
458 40.1F MT01 45040.1M Not Confiremed
462 40.1G RS7Z 45040.1K Confiremed
455 40.1D CHO4 45040.1H ---> want to fill all blank place " Not Confiremed"
478 40.1F MT01 45040.1S
482 40.1G RS7Z 45040.1G
i want to fill Not Confiremed in blank place in confirmation column.
looking for support . thanks in advance .
Solved! Go to Solution.
@Anonymous , Do this change in last return
return Switch(true(),
isblank(confirmed ), "Not Confiremed"
confiremed = "" ,not_confirmed,confiremed)
or
return if(confiremed = "" || isblank(confirmed ) ,not_confirmed,confiremed)
I think you can do this all in one step without needing the concatenated columns or calculated tables.
Try this as a new calculated column on Risk Deliveries.
Confirmation =
LOOKUPVALUE (
Confirmation_Advance[Confiremd],
Confirmation_Advance[PO Num], 'Risk deliveries'[PO Num],
Confirmation_Advance[Mat], 'Risk deliveries'[Mat],
"Not Confiremd"
)
@Anonymous , Do this change in last return
return Switch(true(),
isblank(confirmed ), "Not Confiremed"
confiremed = "" ,not_confirmed,confiremed)
or
return if(confiremed = "" || isblank(confirmed ) ,not_confirmed,confiremed)
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
11 | |
10 | |
10 | |
10 |
User | Count |
---|---|
16 | |
13 | |
12 | |
11 | |
8 |