Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Thanks for ur respond
I tried ur DAX , but i got an issue for calculating month .
so i tried to test with my own DAX
KPI-Delivery = if(ISBLANK(PREE[Rcv Order]),"RCV ORDER BLANK",
IF(ISBLANK(PREE[Rcv Order]) && ISBLANK(PREE[Last Delivery for POD]),"CHECK", IF(ISBLANK(PREE[Last Delivery for POD]),"NOT DELIVERED YET",
if(PREE[Last Delivery for POD].[Month]>PREE[Rcv Order].[Month],"OUTSTANDING","ONTIME"))))
Regards
syaiful
Try something like that. if both are in same table, create a new column
Switch(true (),
isblank([rcdOrder]), "Received Order blank",
isblank([rcdOrder]) && isblank([delivery]), "Check",
[rcdOrder]<today() && isblank([delivery]) ,"Outstanding",
[rcdOrder]>=today() && isblank([delivery]) ,"Not deilvered yet",
[rcdOrder]<today() && ([delivery]) <<today(),"OK"
,"Outstanding"
)
If both are in different table
then enclose the with firstnonblank() like firstnonblank([rcdOrder],blank()) and create a measure. But in display row conext would be important
Refer:
Thanks for ur respond
I tried ur DAX , but i got an issue for calculating month .
so i tried to test with my own DAX
KPI-Delivery = if(ISBLANK(PREE[Rcv Order]),"RCV ORDER BLANK",
IF(ISBLANK(PREE[Rcv Order]) && ISBLANK(PREE[Last Delivery for POD]),"CHECK", IF(ISBLANK(PREE[Last Delivery for POD]),"NOT DELIVERED YET",
if(PREE[Last Delivery for POD].[Month]>PREE[Rcv Order].[Month],"OUTSTANDING","ONTIME"))))
Regards
syaiful
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 58 | |
| 45 | |
| 42 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 172 | |
| 107 | |
| 92 | |
| 54 | |
| 46 |