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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi Experts
How would you alter the followin measure to give you the max date less one day
Measure
Calculated Column =
VAR __Date = [Date]
VAR __Max = MAXX('Table', [Date])
VAR __Result = IF(__Date = __Max,1,0)
RETURN
__Result
So if the MAX date is
20.11.2022
one day less is 19.11.2022 this becomes 1 and all other days 0
Solved! Go to Solution.
Hi @Anonymous
try like:
Calculated Column =
VAR __Date = [Date]
VAR __Max = MAXX('Table', [Date])
VAR __Result = IF(__Date = __Max,__Max-1,0)
RETURN
__Result
Hi @Anonymous
try like:
Calculated Column =
VAR __Date = [Date]
VAR __Max = MAXX('Table', [Date])
VAR __Result = IF(__Date = __Max,__Max-1,0)
RETURN
__Result
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 37 | |
| 33 | |
| 32 | |
| 29 |
| User | Count |
|---|---|
| 133 | |
| 88 | |
| 85 | |
| 68 | |
| 64 |