Forum Discussion
Looking up invalid data on a dense spool
- 4 years ago
Hi powerbi-dev pkeefer Anonymous ,
This issue has been submitted internally(ICM: 305645248). Please be patient to wait for fixing. If there is any news, I will update it here.
Best Regards,
Community Support Team _ kalyjIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi powerbi-dev pkeefer Anonymous ,
This issue has been submitted internally(ICM: 305645248). Please be patient to wait for fixing. If there is any news, I will update it here.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I got this "bug" still in 2025. Finally found the root from a syntax involving concatenation of a hardcode string with switch statement will cause the issue. The switch statement consist of possible return with string and number.
"" + switch(true, a,b)In such case type of a and b cannot be determined until run time and therefore I guess it's leading to the bug where it didn't handle correctly for numeric and string type. It doesn't have issue in desktop but in Power BI service. It's triggered when filter applied on certain records that hit the bug. I workaround it by following and no more issue.
switch(true(), ""+a, ""+b)