I need assistance with tying a Share point list with a collection to gather input data from a customer:
I'm getting the following error: HELP! lol
The user is prompted to input information containing a combination of dropdown selections and input boxes.
Hi @rsteeleiv,
Do you want to update a list based on a collection?
Could you please tell me that if you have combination of dropdown selections and input boxes in a Gallery?
If you have combination of dropdown selections and input boxes in a Gallery, I think you should combine Patch() with ForAll():
ForAll(
Collection as T,
Patch(
ScoreCard,
Defaults(ScoreCard),
{TRTID:T.Field1_Collection,//Map the fields from your collection
Quarter:T.Field2_Collection,
...
})
)
If you just have standalone controls, you need a Patch
Patch(
ScoreCard,
Defaults(ScoreCard),
{TRTID:TRTIDEntry.Value
Quarter:QuarterEntry.Text,
...
})
WarrenBelz
146,745
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
66,091
Most Valuable Professional