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.
I am new to Power BI I want to highlight the value in matrix visual if its less then pervious date value. for example, Van_no 0016 & 1005 have less mileage on 08-Apr-20 as compare to 07-Apr-20 and the same condition is for 06-Apr-20 vs 07-Apr-20 also.
thanks in advance.
If you've fixed the issue on your own please kindly share your solution. if the above posts help, please kindly mark it as a solution to help others find it more quickly.thanks!
Dear All,
Not found any solution from the community I tried a lot but failed.
You probably want to create a flag measure like:
Flag Measure =
VAR __Measure = [Current Measure]
VAR __Date = MAX('Table'[Date])
VAR __Previous = CALCULATE([Current Measure],FILTER('Table',(__Date - 1)))
RETURN
IF(__Measure < __Previous,1,0)
can you please correct below because I am unable to put the column name without function.
User | Count |
---|---|
98 | |
76 | |
75 | |
48 | |
27 |