Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi everyone,
I have an issue with my report, when i'm trying to load my visual i got an 'Out of memory error'. The report is in Import Mode and the issue is happening both on the portal & power bi desktop.
The issue is only happening when i try to laod the visual with the following measure :
Number of subs N-1 =
VAR dateFilter = IFERROR(DATE(YEAR([MAX_SUB_DATE])-1,MONTH([MAX_SUB_DATE]), DAY([MAX_SUB_DATE])),[MAX_SUB_DATE])
VAR PreviousYear = MAX('DMT SUB_PERIOD'[SUB_YEAR])-1
RETURN
CALCULATE(
DISTINCTCOUNT('DMT FACT_SUB'[LIC_INO]),
FILTER(
ALL('DMT FACT_SUB'[SUB_YEAR]), 'DMT FACT_SUB'[SUB_YEAR] = PreviousYear ),
('DMT FACT_SUB'[SUB_ANNULATION_DATE] = BLANK()||'DMT FACT_SUB'[SUB_ANNULATION_DATE] > dateFilter )
&&'DMT FACT_SUB'[SUBSCRIPTION_DATE] <= dateFilter,
FILTER(ALL('DMT SUB_PERIOD'),'DMT SUB_PERIOD'[SUB_YEAR] = MAX('DMT SUB_PERIOD'[SUB_YEAR])-1))
I wanted to know if there is a way to load this visual without reducing the volume of data ?
Solved! Go to Solution.
Add filters until the visual renders, and then look in Performance analyzer and DAX Studio for the culprit. Double check your data model too to make sure you grab the right columns.
Once the visual has rendered, remove the filters again one by one until it breaks again. Keep checking in Performance analyzer and DAX Studio.
Add filters until the visual renders, and then look in Performance analyzer and DAX Studio for the culprit. Double check your data model too to make sure you grab the right columns.
Once the visual has rendered, remove the filters again one by one until it breaks again. Keep checking in Performance analyzer and DAX Studio.