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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
dawcza3
Frequent Visitor

Calculate Age with Direct Query Support

 

I'm trying to calculate Age from DateOfBirth. Actually I'm do this with transformation date to age and round down. It's works ok, but it not avalaible to use data in direct query mode. So, is there any other way to calculate age which support direct query mode ?

1 ACCEPTED SOLUTION
dawcza3
Frequent Visitor

@v-ljerr-msft

 

thanks for replay but actually I do this in simple way :

Age = ROUNDDOWN(((1,0*(TODAY()-Partner[DateOfBirth]))/365);0)

View solution in original post

4 REPLIES 4
dawcza3
Frequent Visitor

@v-ljerr-msft

 

thanks for replay but actually I do this in simple way :

Age = ROUNDDOWN(((1,0*(TODAY()-Partner[DateOfBirth]))/365);0)

Hi @dawcza3,

 

Nice solution!

 

Could you accept your reply as solution to help others who may have similar issue easily find the answer and close this thread?Smiley Happy

 

Regards

Noob question, my apologies. I have a very similar need and don't understand where I would define "Age" so that it can be included in the visualization. Is this a new column, or a measure?

 

Secondly, could it be applied to a summarized result. Using this example, to find the age of the youngest person in a family?

v-ljerr-msft
Microsoft Employee
Microsoft Employee

Hi @dawcza3,

 

According to your description above, you should be able to use the formula below to create a calculate column to calculate age in direct query mode.Smiley Happy

Age =
YEAR ( TODAY () ) - YEAR ( Table1[DateOfBirth] )
    + IF (
        DATE ( 1900, MONTH ( TODAY () ), DAY ( TODAY () ) )
            < DATE ( 1900, MONTH ( Table1[DateOfBirth] ), DAY ( Table1[DateOfBirth] ) ),
        - 1,
        0
    )

Regards

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.