Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Calculated Column Max Date Less 1 day

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

 

1 ACCEPTED SOLUTION
FreemanZ
Super User
Super User

Hi @Anonymous 

try like:

Calculated Column = 
  VAR __Date = [Date]
  VAR __Max = MAXX('Table', [Date])
  VAR __Result = IF(__Date = __Max,__Max-1,0)
RETURN
  __Result

View solution in original post

1 REPLY 1
FreemanZ
Super User
Super User

Hi @Anonymous 

try like:

Calculated Column = 
  VAR __Date = [Date]
  VAR __Max = MAXX('Table', [Date])
  VAR __Result = IF(__Date = __Max,__Max-1,0)
RETURN
  __Result

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors