Forum Discussion
Running into Memory Issue
HI ArsalanFND,
Nope, it seems like your intervals split your records to too many sub-records which need to calculate and progress in memory.
I can only suggest you use 64 bit power bi desktop with large physical memory or prepare a detail table with detailed interval records to reduce calculate pressure.
In addition, you can also take a look at following link if your requirement is similar as below:
DAX - 15 minute Interval Question
Regards,
Xiaoxin Sheng
- ArsalanFND7 years agoFrequent Visitor
Hi Xiaoxin,
Thanks for the reply, yes correct the sun-records are too many.
The link you provide was helpful but i am ok with that part.
I am calculationg the Running Total based on my Date Time Table which as 3 years each day with 96 intervals. Which is a huge calculation every time.
Is there a way i can calculate it and save it so it's not calculated every time?
Thanks,
FND
- ArsalanFND7 years agoFrequent Visitor
Hi,
Also i able to create the measure with Running total. How can i calculate MAX for the day? for visuals.
Running total is measure and DateTime is a column from another table with realtionship.
Thansk,
Cheers,
- ArsalanFND7 years agoFrequent Visitor
So I got the Max values. NOw my only issue is still i am unable to visualize MAX for the day. should i use SQL databse instead of Excel files to load and process m data faster??
Thanks,
- Anonymous7 years agoNot applicable
HI ArsalanFND,
I'd like to suggest you create a table to store expand records, then you only need to do summarize on real records. In my opinion, it will spend less system resource than calculate with huge virtual table.
Regards,
Xiaoxin Sheng