Forum Discussion
Anonymous
4 years agoNot applicable
Add column to extract Numbers from Text column
I have a table as show below I want to retrieve all number from the Answer column and the expected result as shown below The Result column can help me to sum number of Attendee. How ca...
- Anonymous4 years ago
Hi
Create a new new column and use the following Dax Query
Result =
IF (
NOT (
ISERROR (
VALUE ( 'Table'[Answer] )
)
),
VALUE ( 'Table'[Answer] )
)If this post helps ,Accept is as a Solution.Kudos helps too!!!
Anonymous
4 years agoNot applicable
Hi
Create a new new column and use the following Dax Query
Result =
IF (
NOT (
ISERROR (
VALUE ( 'Table'[Answer] )
)
),
VALUE ( 'Table'[Answer] )
)
IF (
NOT (
ISERROR (
VALUE ( 'Table'[Answer] )
)
),
VALUE ( 'Table'[Answer] )
)
If this post helps ,Accept is as a Solution.
Kudos helps too!!!