This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
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'
| YOB | AGE |
| 1990 | 34 |
| 19DC | 0 |
| 1972 | 52 |
| 1983 | 41 |
| 19DC | 0 |
| 19DC | 0 |
Solved! Go to Solution.
@Anonymous
you can also try to use DAX to get the new column
Proud to be a Super User!
thank you!
@Anonymous
you can also try to use DAX to get the new column
Proud to be a Super User!
thank you!
you are welcome
Proud to be a Super User!
Hi @Anonymous -you can add one new add column in power query editor as below:
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!!
Proud to be a Super User! | |
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 27 | |
| 26 | |
| 25 | |
| 19 | |
| 13 |
| User | Count |
|---|---|
| 52 | |
| 47 | |
| 39 | |
| 21 | |
| 20 |