Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
I am looking for help with my DAX formula to show if Install Date > Ship Date then flag it as a 1 otherwise 0. Currently, I am using the formula below but I don't want it to calculate for products with no ship dates.
Past Due Flag = IF('IV_Product'[Install Date] > 'IV_Product'[Ship Date], 1, 0)
Solved! Go to Solution.
Try this @rachaelwalker
Past Due Flag =
IF(
ISBLANK( 'IV_Product'[Ship Date] ),
BLANK,
IF(
'IV_Product'[Install Date] > 'IV_Product'[Ship Date],
1,
0
)
)
If ShipDate is blank, it returns blank, otherwise it does your normal 1/0 result.
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI ReportingJust a small thing you missed is that you didn't add parenthesis after BLANK. It Should be BLANK().
Everything else is correct.
Try this @rachaelwalker
Past Due Flag =
IF(
ISBLANK( 'IV_Product'[Ship Date] ),
BLANK,
IF(
'IV_Product'[Install Date] > 'IV_Product'[Ship Date],
1,
0
)
)
If ShipDate is blank, it returns blank, otherwise it does your normal 1/0 result.
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI ReportingJust a small thing you missed is that you didn't add parenthesis after BLANK. It Should be BLANK().
Everything else is correct.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 23 | |
| 12 | |
| 11 | |
| 9 | |
| 8 |