Forum Discussion
Anonymous
4 years agoNot applicable
Convert Text to number with DAX
I have a derived column but the number there is in text format. I have tried different DAX formular to conver it to the right format(integer) but always get error e.g size integer = CONVERT(Sheet2...
- 4 years ago
Anonymous
Actually I was expecting this response. Apparently you have more than just numbers in this column. In order to detect the cell(s) that have the problem use the following code then look for the blank cells:IFERROR ( VALUE ( Sheet2[Size Value] ), BLANK ( ) )
Anonymous
4 years agoNot applicable
Thanks for the response. Unfortunately I still face the same issue.
tamerj1
Community Champion
4 years agoAnonymous
Actually I was expecting this response. Apparently you have more than just numbers in this column. In order to detect the cell(s) that have the problem use the following code then look for the blank cells:
IFERROR ( VALUE ( Sheet2[Size Value] ), BLANK ( ) )