Forum Discussion
DAX comparison do not support comparing values of type integer with values of type text
Anonymous
You are placing another column in the visual! Please use
Column = IF ( ISERROR ( VALUE ( 'Table1'[Earned Points] ) ), 0, 15 )
Ok, based on your initial reccomendation a created a Calculated Column for Each Column that needs to be graded and that can be an NA. Then i Created a Messure That is the Base Points=
- tamerj14 years ago
Community Champion
Anonymous
You need to apply this to all columns. Use power query for that. Select all the numerical columns and replace NA wil null or 0.
Other thing I noticed, it would be much easier if you first unpivot all the numerical columns then replace the null. Then In DAX you can do something likeBase Points = CALCULATE ( SUM ( Table1[Value] ), Table1[Attribute] IN { "Issue Resolution Points", "Complete and Accurate Information Points", etc..... } )
- Anonymous4 years agoNot applicable
This is Report that is going to be feed live by automatic responses submited in Form, that form have an excel that is the one that feed the Report. If a use power query is only going to apply for the existent data right? and the new data?
- tamerj14 years ago
Community Champion
Anonymous
Then you neef to fix it from the source.