In PowerApps, I can create a collection of an entire Sharepoint list (all columns) as below:
Collect(colWhatever, TheListName)
But I cannot figure out how to specify just the 2-columns that I need in from the list, like:
Collect(colWhatever, TheListName.Column1, TheListName.Column1)
Thanks for your help in advance.
--Chris
Solved! Go to Solution.
Use the ShowColumns function:
https://powerapps.microsoft.com/en-us/tutorials/function-table-shaping/
PS To be clear:
ClearCollect(ColWhatever, ShowColumns(TheListName, "ColumnName1", "ColumnName2"))
Use the ShowColumns function:
https://powerapps.microsoft.com/en-us/tutorials/function-table-shaping/
PS To be clear:
ClearCollect(ColWhatever, ShowColumns(TheListName, "ColumnName1", "ColumnName2"))
Meneghino you are the man....works like a champ!
Thanks.
--Chris
Thanks Meneghino !!
hello Meneghino i have a problem and maybe you can help me, im triying to create a link between a table column and another page inside the same app, the trick is that when i press the link in the column i would like to be taken to the page in question showing the data from that column, help please!!!!
Thanks, Meneghino!
@Meneghino wrote:Use the ShowColumns function:
https://powerapps.microsoft.com/en-us/tutorials/function-table-shaping/
PS To be clear:
ClearCollect(ColWhatever, ShowColumns(TheListName, "ColumnName1", "ColumnName2"))
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
User | Count |
---|---|
200 | |
71 | |
50 | |
46 | |
20 |
User | Count |
---|---|
256 | |
120 | |
84 | |
79 | |
69 |