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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi All
i need to detect those deal , when the Closing is less then to day , so that sales staff need to change the closing date after today.
My PBI file
https://www.dropbox.com/s/456sxu2d972zfq3/PBT_V2021_400%20CRM_Ti.pbix?dl=0
Solved! Go to Solution.
@admin11 , Create a measure
color measure =
if(Max(Table[ Closing Date]) <= today(), "yellow", "white")
Set this in conditional formatting for every value using the field value option
https://radacad.com/dax-and-conditional-formatting-better-together-find-the-biggest-and-smallest-num...
https://docs.microsoft.com/en-us/power-bi/desktop-conditional-table-formatting#color-by-color-values
https://www.youtube.com/watch?v=RqBb5eBf_I4
@admin11 , Create a measure
color measure =
if(Max(Table[ Closing Date]) <= today(), "yellow", "white")
Set this in conditional formatting for every value using the field value option
https://radacad.com/dax-and-conditional-formatting-better-together-find-the-biggest-and-smallest-num...
https://docs.microsoft.com/en-us/power-bi/desktop-conditional-table-formatting#color-by-color-values
https://www.youtube.com/watch?v=RqBb5eBf_I4