Reply
avatar user
Anonymous
Not applicable
Partially syndicated - Outbound

Create new integer column for text

Hi, I have this set of data, now i would like to derive a new column call age:

For YOB type is text, so im encounter problem to convert it to number. 

For new column Age it should be derive from '2024-YOB'

YOBAGE 
199034
19DC0
197252
198341
19DC0
19DC0
1 ACCEPTED SOLUTION
ryan_mayu
Super User
Super User

Syndicated - Outbound

@Anonymous 

you can also try to use DAX to get the new column

 

AGE = IFERROR(2024-'Table'[YOB],0)
OR 
AGE = IFERROR(YEAR(TODAY())-'Table'[YOB],0)
11.PNG
 
 




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

5 REPLIES 5
avatar user
Anonymous
Not applicable

Syndicated - Outbound

thank you!

ryan_mayu
Super User
Super User

Syndicated - Outbound

@Anonymous 

you can also try to use DAX to get the new column

 

AGE = IFERROR(2024-'Table'[YOB],0)
OR 
AGE = IFERROR(YEAR(TODAY())-'Table'[YOB],0)
11.PNG
 
 




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




avatar user
Anonymous
Not applicable

Syndicated - Outbound

thank you!

Syndicated - Outbound

you are welcome





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




rajendraongole1
Super User
Super User

Syndicated - Outbound

Hi @Anonymous -you can add one new add column in power query editor as below:

 

rajendraongole1_0-1720594112048.png

 

if [YOB] = 0 then 0 else 2024 - [YOB]

 

you will have a new Age column derived from the YOB column, with invalid YOB values handled appropriately.

 

M code:

let
Source = Excel.Workbook(File.Contents("C:\Path\To\Your\File.xlsx"), null, true),
Sheet1_Sheet = Source{[Item="Sheet1",Kind="Sheet"]}[Data],
#"Promoted Headers" = Table.PromoteHeaders(Sheet1_Sheet, [PromoteAllScalars=true]),
#"Changed Type" = Table.TransformColumnTypes(#"Promoted Headers",{{"YOB", type text}}),
#"Replaced Value" = Table.ReplaceValue(#"Changed Type","19DC","0",Replacer.ReplaceText,{"YOB"}),
#"Changed Type1" = Table.TransformColumnTypes(#"Replaced Value",{{"YOB", Int64.Type}}),
#"Added Custom" = Table.AddColumn(#"Changed Type1", "Age", each if [YOB] = 0 then 0 else 2024 - [YOB]),
#"Changed Type2" = Table.TransformColumnTypes(#"Added Custom",{{"Age", Int64.Type}})
in
#"Changed Type2"

 

Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





avatar user

Helpful resources

Announcements
March PBI video - carousel

Power BI Monthly Update - March 2025

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

March2025 Carousel

Fabric Community Update - March 2025

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

Top Solution Authors (Last Month)
Top Kudoed Authors (Last Month)