Forum Discussion
DAX causing system resource issues
Good afternoon,
I have the following DAX formula which I have been using to find the date a vehicle was last inspected:
Hi Msommerf,
While I dont have any advice with regards to M. You could try the following table based caluclation. Please note that this assumes that the fields available are within the same table. If not It may be worth bringing the fields from other tables into this one through their shared ID relationship:Calculate(Max([InspectionCompleted]),Filter(All([INSPECTIONCOMPLETEDTABLE]),
ASSETID = Earlier(ASSETID) &&
InspectionCompleted<Date_Occured ))The calculation may run more efficiently if its does not have to look to other tables.
2 Replies
- danielwelchResolver II
Hi Msommerf,
While I dont have any advice with regards to M. You could try the following table based caluclation. Please note that this assumes that the fields available are within the same table. If not It may be worth bringing the fields from other tables into this one through their shared ID relationship:Calculate(Max([InspectionCompleted]),Filter(All([INSPECTIONCOMPLETEDTABLE]),
ASSETID = Earlier(ASSETID) &&
InspectionCompleted<Date_Occured ))The calculation may run more efficiently if its does not have to look to other tables.
- AnonymousNot applicable
Hi msommerf,
AFAIK, current power query functions are also not suitable for your requirement. They are good at data shaping/clean and transform data structure instead of calculation through whole table records with particular filters.
BTW, what type of data source are you worked on? If you are using SQL server or other data source that supported advanced queries, you can try to use query to add some additional fields to reduce the looping calculations.
Regards,Xiaoxin Sheng