Forum Discussion
Anonymous
7 years agoNot applicable
Adavanced Editor help
I have the following code which takes population data, groups it by field of study and catches only those that are 500K or higher. Is there a way to do this, so that the filtered table is not group...
- 7 years ago
While Dales solution will work, on large volume of data it might soon become slow. Then you can use this technique instead: Just add another column in your Group-operation, that adds all the rows back as they were and expand that column afterwards:
Happy and healthy new year everyone :)
ImkeF
7 years agoCommunity Champion
While Dales solution will work, on large volume of data it might soon become slow. Then you can use this technique instead: Just add another column in your Group-operation, that adds all the rows back as they were and expand that column afterwards:
Happy and healthy new year everyone :)
Anonymous
7 years agoNot applicable
Thank you guys for taking the time to respond to this - I will try out both of these solutions.