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.
- pmay10 months agoResolver I
It's been 3 years and you've not posted an update about the fix. We're getting this bug - should I assume you're still working on it?
- user_name_10110 months agoNew Member
Hi - I also just got this bug this morning. Everything was working fine yesterday. Did you figure out a way to solve this?
- Anonymous4 years agoNot applicable
HI Kalyj, do you have any news on this topic? we have an aoutage in prod, impacting our user community.
- v-yanjiang-msft4 years agoCommunity Support
Hi Anonymous ,
Sorry for the inconvenience, the engineers are rushing to fix this known bug, the fix will come soon, thank you for your patience. If there is any news, I will update it here.
Best Regards,
Community Support Team _ kalyj
- bogoLAC4 years agoFrequent Visitor
let us know when the problem is going to be resolved, i still see the problem
- bogoLAC4 years agoFrequent Visitor
any update on the resolution?
- v-yanjiang-msft4 years agoCommunity Support
Hi bogoLAC ,
Sorry the issue is still not be fixed, Please be patient to wait for fixing. If there is any news, I will update it here.
Best Regards,
Community Support Team _ kalyj- cdenniston4 years agoRegular Visitor
Any update on this issue, I have noticed that when our report is republished to a My workspace we are not receiving the Looking up invalid data on a dense spool. Any thought that it has to do with the premium service? Is that why it is working in both the PowerBi desktop and a users My workspace?
- synru10 months agoFrequent Visitor
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)