Forum Discussion
Data Slicers not working properly with Excel 2016
LordRA I'm having the same problem. Were you able to resolve the issue?
Aswa09Yes, i solved it. The reason of this behaviour was a Measure I used in my Pivots, which returned an error in Office 2016, but not in Office 365. Turns out, there was slight change of the DAX-Formula logic between the two Office versions. Once I found a way the DAX-Formula worked in both versions, the Data Slicers worked like expected.
The DAX-Formula which caused the error in my case was:
=IF([PERFORMANCE]>=0;[PERFORMANCE];"")
Since the field "[PERFORMANCE]" was a number, and my IF-Formula could return either a number or a string, Office 2016 complained about data-type mismatch (Office 365 doesn't seem to bother).
Therefore I changed to formula to:
=IF([PERFORMANCE]>=0;[PERFORMANCE];BLANK())
This way the formula works in both Excel versions.
Cheers, LordRA