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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
Clemerson
New Member

Dynamic age calculation

Good afternoon

I'm trying to make a dynamic age calculation, using a filter using a D_Calendar,I have a column with the date of birth, from it performed the age calculation 

"Dynamic Age = DATEDIFF([Birth Date],NOW(), YEAR)", it turns out that When I change the date filter indicated in the attached image that the age is also recalculated, Tried in several ways and could not, does anyone know how to do?

Clemerson_0-1664218942445.png

 

3 REPLIES 3
Greg_Deckler
Community Champion
Community Champion

@Clemerson Not sure what you are trying to do with the date slicer but if you don't want the birthday to change you could do this:

 

Dynamic Age Measure = 
  VAR __Name = MAX('Table'[Name]) // some identifier
  VAR __BirthDate = MAXX(FILTER(ALL('TAble'),[Name] = __Name),[Birth Date])
RETURN
  DATEDIFF(__BirthDate ,TODAY(), YEAR)


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Thank you for your help,
Actually the date of birth I already have static

Clemerson_0-1664221059268.png

what I need is for dynamic age to change when I filter a different date

Clemerson_1-1664221125004.png

example: Today 09/26/2022 the age is 80, when put in the filter the date of 09/26/2023 the age would have to change to 81, I don't know if I could explain it right.

@Clemerson So maybe this:

Dynamic Age = DATEDIFF([Birth Date],MAX('Table'[Date]), YEAR)


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.

Top Solution Authors