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 )
Anonymous
4 years agoNot applicable
Still receving this error
tamerj1
Community Champion
4 years agoAnonymous
You are placing another column in the visual! Please use
Column = IF ( ISERROR ( VALUE ( 'Table1'[Earned Points] ) ), 0, 15 )