I have two sharepoint lists: IDEAS and VOTES I need to capture the running total of Yes votes for each idea. The IDEAS list has a field called THUMBSUPCOUNT that I can use to store the running total of Yes votes. How do I join the tables and patch the running total back to the IDEAS.THUMBSUPCOUNT field?
Solved! Go to Solution.
Hi @Anonymous ,
Could you please share a bit more about the "GoodIdea" column in your VOTES List? Is it a Choice type column or Single line text type column?
Do you want to patch the running total of Yes votes for each idea back to the THUMBSUPCOUNT field in your Ideas List?
Based on the needs that you mentioned, I have made a test on my side, please take a try with the following workaround:
1. If the "GoodIdea" column is a Single line text type column in your VOTES List:
Set the OnSelect property of the "Submit" button to following:
ForAll( RenameColumns(IDEAS, "ID", "ID1"), Patch( IDEAS, LookUp(IDEAS, ID = ID1), { THUMBSUPCOUNT: CountRows(Filter(VOTES, IDIdea = ID1 && GoodIdea = "Yes")) } ) )
2. If the "GoodIdea" column is a Choice type column in your VOTES List:
Set the OnSelect property of the "Submit" button to following:
ForAll( RenameColumns(IDEAS, "ID", "ID1"), Patch( IDEAS, LookUp(IDEAS, ID = ID1), { THUMBSUPCOUNT: CountRows(Filter(VOTES, IDIdea = ID1 && GoodIdea.Value = "Yes")) } ) )
In addition, if the IDIdea column is a LookUp type column in your VOTES list, please modify above formula as below:
ForAll( RenameColumns(IDEAS, "ID", "ID1"), Patch( IDEAS, LookUp(IDEAS, ID = ID1), { THUMBSUPCOUNT: CountRows(Filter(VOTES, IDIdea.Value = ID1 && GoodIdea = "Yes")) } ) )
ForAll( RenameColumns(IDEAS, "ID", "ID1"), Patch( IDEAS, LookUp(IDEAS, ID = ID1), { THUMBSUPCOUNT: CountRows(Filter(VOTES, IDIdea.Value = ID1 && GoodIdea.Value = "Yes")) } ) )
More details about Patch function, ForAll function and RenameColumns function, please check the following article:
Best regards,
Hi @Anonymous ,
Could you please share a bit more about the "GoodIdea" column in your VOTES List? Is it a Choice type column or Single line text type column?
Do you want to patch the running total of Yes votes for each idea back to the THUMBSUPCOUNT field in your Ideas List?
Based on the needs that you mentioned, I have made a test on my side, please take a try with the following workaround:
1. If the "GoodIdea" column is a Single line text type column in your VOTES List:
Set the OnSelect property of the "Submit" button to following:
ForAll( RenameColumns(IDEAS, "ID", "ID1"), Patch( IDEAS, LookUp(IDEAS, ID = ID1), { THUMBSUPCOUNT: CountRows(Filter(VOTES, IDIdea = ID1 && GoodIdea = "Yes")) } ) )
2. If the "GoodIdea" column is a Choice type column in your VOTES List:
Set the OnSelect property of the "Submit" button to following:
ForAll( RenameColumns(IDEAS, "ID", "ID1"), Patch( IDEAS, LookUp(IDEAS, ID = ID1), { THUMBSUPCOUNT: CountRows(Filter(VOTES, IDIdea = ID1 && GoodIdea.Value = "Yes")) } ) )
In addition, if the IDIdea column is a LookUp type column in your VOTES list, please modify above formula as below:
ForAll( RenameColumns(IDEAS, "ID", "ID1"), Patch( IDEAS, LookUp(IDEAS, ID = ID1), { THUMBSUPCOUNT: CountRows(Filter(VOTES, IDIdea.Value = ID1 && GoodIdea = "Yes")) } ) )
ForAll( RenameColumns(IDEAS, "ID", "ID1"), Patch( IDEAS, LookUp(IDEAS, ID = ID1), { THUMBSUPCOUNT: CountRows(Filter(VOTES, IDIdea.Value = ID1 && GoodIdea.Value = "Yes")) } ) )
More details about Patch function, ForAll function and RenameColumns function, please check the following article:
Best regards,
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
185 | |
51 | |
47 | |
32 | |
32 |
User | Count |
---|---|
259 | |
91 | |
78 | |
68 | |
67 |