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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
KateEC
Frequent Visitor

Age calculated column

Hi,

 

I am trying to create a calculated column with age worked out used the 'Birthdate' column. I've looked and tried using some of the formulas from some existing posts, but none have worked.

 

The colum is currently formatted as text (written dd/mm/yyyy) which I assume might be part of the issue? However, when I try and select date as the format, I get the "We can't automatically convert the column to Date Type" message.

 

Any ideas how I can a) format that column as a date? and b) More importantly, calculate age?

 

Thanks in advance and apologies if there is a super simple solution - i'm a novice! 🙂 

1 ACCEPTED SOLUTION

Thanks for replying! In the end, I managed to do it using:

 

Age (Today) = FLOOR(IF([Birthdate] < TODAY(), DATEDIFF([Birthdate], TODAY(), DAY) / 365.25, 0), 1)

 

Couldn't quite figure yours out (absolute novice, here!), but thanks anyway! 🙂 

 

 

View solution in original post

2 REPLIES 2
v-chuncz-msft
Community Support
Community Support

 

@KateEC,

 

You may add a calculated column and refer to this post.

 

Column =
IFERROR (
    DATE ( RIGHT ( Table1[Birthdate], 4 ), MID ( Table1[Birthdate], 4, 2 ), LEFT ( Table1[Birthdate], 2 ) ),
    BLANK ()
)

 

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks for replying! In the end, I managed to do it using:

 

Age (Today) = FLOOR(IF([Birthdate] < TODAY(), DATEDIFF([Birthdate], TODAY(), DAY) / 365.25, 0), 1)

 

Couldn't quite figure yours out (absolute novice, here!), but thanks anyway! 🙂 

 

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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