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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I have 2 measures.
Measure 1: Time = DATEDIFF([ERDAT],[CLDAT1].[Date],DAY)
Measure 2: Target = IF([Time]<=21,"in time","overdue")
If CLDAT1 is empty than Measure 2 shows as well "in time". Which is wrong. It should be either be empty or a text "in progress".
Any idea is welcome.
Solved! Go to Solution.
If CLDAT1 is empty does that make Time empty?
If so, try:
Target = IF(ISBLANK([Time]),BLANK(),IF([Time]<=21,"in time","overdue"))
Or
Target = IF(ISBLANK([Time]),"in progress",IF([Time]<=21,"in time","overdue"))
If CLDAT1 is empty does that make Time empty?
If so, try:
Target = IF(ISBLANK([Time]),BLANK(),IF([Time]<=21,"in time","overdue"))
Or
Target = IF(ISBLANK([Time]),"in progress",IF([Time]<=21,"in time","overdue"))
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!