Forum Discussion
Anonymous
4 years agoNot applicable
DAX comparison do not support comparing values of type integer with values of type text
Hi Guys Im having this issue when trying to create a calculate column. I Type in the following condition: Column = IF ( 'Table1'[Issue Resolution] = "NA", 0, 15 )
tamerj1
Community Champion
4 years agoAnonymous
Please try
Column = IF ( ISBLANK ( 'Table1'[Issue Resolution] ), 0, 15 )
Anonymous
4 years agoNot applicable
Now when I do the Messure I received this error.
- tamerj14 years ago
Community Champion
Anonymous
Please try
Column = IF ( ISERROR ( VALUE ( 'Table1'[Issue Resolution] ) ), 0, 15 )
- Anonymous4 years agoNot applicable
Still receving this error
- tamerj14 years ago
Community Champion
Anonymous
You are placing another column in the visual! Please useColumn = IF ( ISERROR ( VALUE ( 'Table1'[Earned Points] ) ), 0, 15 )