Forum Discussion
Error Fetching Data for this Visual
- 1 year ago
This seems to be a issue with the march release of power BI. Try revertong to Feb release
If you paste your measure in chat GPT it will fix it. I found that I was no longer able to generate table filters within a summarize. Since then, I've started generating the table filter outside of the summarize and applying the table variable as a table fitler. This also effects excel dax calculated tables.
eg.
Bad
Summarize(
Sales
, Sales[Customer]
, Filter(Calendar, Calendar[Date]>dynamic date field)
, [Sales]
)
Good
VAR CalFilter = Filter(Calendar, Calendar[Date]>dynamic date field)
Return
Summarize(
Sales
, Sales[Customer]
, CalFilter
, [Sales]
)
Thanks for the hint, but I don't have SUMMARIZE() in my calculations, so this can't be the issue.