Morning All,
Matthew Devaney has a post that talks about exceeding the 2000 row limit for collections. It's a great post and almost exactly what I need. Is there a way to make the table in the below code dynamic:
Clear(colCars);
ForAll(
["Ford", "Dodge", "Toyota"],
Collect(colCars, Filter('Car Inventory', CarMake=Value))
);
Instead of Ford, Dodge and Toyota, I have six names. I could obviously hard type the six names but I was hoping there's a way to all ow me to create the list of names dynamically. My thoughts were to collect a distinct list of names from the sharepoint list and then dynamically create a table from those names. Is that even possible? Any help appreciated.
Cheers,
Mark