Forum Discussion
List.Contains() is slow
- 6 years ago
Hi Anonymous ,
Are you using a direct query mode?Why not filter the table in table view?
Best Regards,
KellyDid I answer your question? Mark my post as a solution!
Hi Anonymous ,
Are you using a direct query mode?Why not filter the table in table view?
Kelly
- Anonymous6 years agoNot applicable
Hi v-kelly-msft
I am using import mode. I could do the filter in table view using LOOKUPVALUE. Is there a difference between the filter in table view vs query mode in terms of performance and speed?
Daren
- v-kelly-msft6 years agoCommunity Support
Hi Anonymous ,
If you use M query for calculation,it will only keep the last data after being filtered,and the calculation will be executed in each rows.But if you choose to filter in table view,it wont destroy the data integrity,1.6mil rows of data will still stored in memory and you can first make a filter to pick out the data you need for calculation,no need to execute it in each rows,which will shorten the time for calculation.
However,if it's a need to do a M query,better refer to ImkeF 's suggestion,this will also help to reduce the time.
Best Regards,
KellyDid I answer your question? Mark my post as a solution!