Hello,
I'm still quite new to PowerApps and building a roster app with multiple pages. In the last page, I have a save button that patches all the information entered a SharePoint list. One of the columns "Marketing Rate" is a choice column (1-5) and in PowerApps I replaced the drop-down box with a slider. Unfortunately, I cannot figure out how to patch this slider value into the column.
Patch(
'SPList',
Defaults('SPList'),
{
'Marketing Rate':Slider.Value
}
)
It tells me the expected type "Record". Found type "Number".
Any suggestions? Bear in mind that I'm quite new to PowerApps so some of the jargon used in this community is very foreign to me.
Thanks,