Forum Discussion
Anonymous
2 years agoNot applicable
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 '2...
- 2 years ago
Anonymous
you can also try to use DAX to get the new column
AGE = IFERROR(2024-'Table'[YOB],0)ORAGE = IFERROR(YEAR(TODAY())-'Table'[YOB],0)
Anonymous
2 years agoNot applicable
thank you!
ryan_mayu
2 years agoSuper User
you are welcome