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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Need to show when Refer Date is between days 45 and 59. I was able to get it to show when past 60 days. (
But can't fiqure out how to get those between days 45 and 59 to show as "coming due".
Would also like to show how many days since the Refer date. This can be a separate column if needed.
Solved! Go to Solution.
Hi,
please check the below picture and the attached pbix file.
It is for creating measures.
Coming_Due =
IF ( TODAY () >= [REFER_DT] + 45 && TODAY () <= [REFER_DT] + 59, "coming due" )
How mane days =
IF ( NOT ISBLANK ( [REFER_DT] ), INT ( TODAY () - [REFER_DT] ) )
Hi,
please check the below picture and the attached pbix file.
It is for creating measures.
Coming_Due =
IF ( TODAY () >= [REFER_DT] + 45 && TODAY () <= [REFER_DT] + 59, "coming due" )
How mane days =
IF ( NOT ISBLANK ( [REFER_DT] ), INT ( TODAY () - [REFER_DT] ) )
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.