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! Request now
I have expiration dates as a column. I want the date to turn red if it is within 90 days of today. I would like to do the same with another column "Order by" if it is within 2 weeks.
Solved! Go to Solution.
@kmlcoch Try creating a flag measure and using it in a rule.
Flag Measure =
VAR __ExDate = MAX('Table'[Expiration Date])
VAR __Days = (TODAY() - __ExDate) * 1.
RETURN
IF(__Days > 90,1,0)
@kmlcoch Try creating a flag measure and using it in a rule.
Flag Measure =
VAR __ExDate = MAX('Table'[Expiration Date])
VAR __Days = (TODAY() - __ExDate) * 1.
RETURN
IF(__Days > 90,1,0)
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.