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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
smeg
Helper I
Helper I

how to get year ago data when there is leap year

Hi I have a measure to calculate yearago data,but how can this be  rewritten to handle  leap year?

 

$YAgo:=CALCULATE(SUM(Metrics_Table[$]),DATEADD(Dates_Table[Anchor_Date],-364,DAY))  -- this is hardcoded formula how can this be dynamic to handle leap year?

 

Thanks..

2 REPLIES 2
ThxAlot
Super User
Super User

$YAgo :=
CALCULATE(
    SUM( Metrics_Table[$] ),
    DATEADD( Dates_Table[Anchor_Date], -1, YEAR )
)


Expertise = List.Accumulate(


        {Days as from Today},


        {Skills and Knowledge},


        (Current, Everyday) => Current & Day.LearnAndPractise(Everyday)


)



I already have that formula ,my question is how to handle leap year and made it dynamic?

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.