Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello.
I need support regarding user age calculation. I have the following data and would like to create a calculated column in PowerQuery that shows:
User_Start_DT USER_END_DT Age column
21/06/2019 null ( still working ) 0 - 5 Years
11/07/2007 11/07/2007 0 - 5 Years
11/09/2013 30/09/2021 5 - 10 Years
28/05/2009 23/03/2015 5 - 10 Years
21/06/2011 11/01/2022 10 - 15 Years
11/07/2007 null ( still working ) 10 - 15 Years
etc
Solved! Go to Solution.
@piotrgrendus87 Here the code to calculate Age Column in PQ with the sample data pasted:
Text.From(Number.RoundUp(
(if Number.Round(Number.From(([#" USER_END_DT "] - [#"User_Start_DT "])/( 365.25 )) ,0 ) = null then 1 else if Number.Round(Number.From(([#" USER_END_DT "] - [#"User_Start_DT "])/( 365.25 )) ,0 ) = 0 then 1 else Number.Round(Number.From(([#" USER_END_DT "] - [#"User_Start_DT "])/( 365.25 )) ,0 )) /5)*5-5) & " - " &
Text.From(Number.RoundUp(
(if Number.Round(Number.From(([#" USER_END_DT "] - [#"User_Start_DT "])/( 365.25 )) ,0 ) = null then 1 else if Number.Round(Number.From(([#" USER_END_DT "] - [#"User_Start_DT "])/( 365.25 )) ,0 ) = 0 then 1 else Number.Round(Number.From(([#" USER_END_DT "] - [#"User_Start_DT "])/( 365.25 )) ,0 )) /5)*5)
BBF
@piotrgrendus87 Here the code to calculate Age Column in PQ with the sample data pasted:
Text.From(Number.RoundUp(
(if Number.Round(Number.From(([#" USER_END_DT "] - [#"User_Start_DT "])/( 365.25 )) ,0 ) = null then 1 else if Number.Round(Number.From(([#" USER_END_DT "] - [#"User_Start_DT "])/( 365.25 )) ,0 ) = 0 then 1 else Number.Round(Number.From(([#" USER_END_DT "] - [#"User_Start_DT "])/( 365.25 )) ,0 )) /5)*5-5) & " - " &
Text.From(Number.RoundUp(
(if Number.Round(Number.From(([#" USER_END_DT "] - [#"User_Start_DT "])/( 365.25 )) ,0 ) = null then 1 else if Number.Round(Number.From(([#" USER_END_DT "] - [#"User_Start_DT "])/( 365.25 )) ,0 ) = 0 then 1 else Number.Round(Number.From(([#" USER_END_DT "] - [#"User_Start_DT "])/( 365.25 )) ,0 )) /5)*5)
BBF
@piotrgrendus87 - try this PBIX file
Age of user - calculated column Power Query.pbix
Kindly let me know it this answered your question I would be happy if you could mark my post as a solution and give it a thumbs up
Best regards
Manoj Nair
Linkedin - https://www.linkedin.com/in/manoj-nair-%E2%98%81-344666104/
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
20 | |
7 | |
6 | |
5 | |
5 |
User | Count |
---|---|
26 | |
10 | |
10 | |
9 | |
6 |