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 )
13 Replies
- ValtteriN
Community Champion
Hi,
Check if your datatype in [issue resolution] column is something besides "Text":I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!
My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/ - tamerj1
Community Champion
Hi Anonymous
what is the data type of the column Issue Resolution. Can you share a screenshot of that column?
- AnonymousNot applicable
- tamerj1
Community Champion
Anonymous
Please try
Column = IF ( ISBLANK ( 'Table1'[Issue Resolution] ), 0, 15 )
- AnonymousNot applicable
ValtteriN Hi Yes, The Column can have 3 values 15, 0 or NA.