Hello!
I have a cutsomer list and I want the reps to answer questions.
I take all my data from a Sharepoint list, and I also want to save answers to the same list (this part is working well).
My issue is that when a rep answered all question for one customer, and he switch to an other one, all radio buton stay selected, except if there is already a value for the question stored in my Sharepoint list.
See video for details: https://jmp.sh/s/PxzqK39DIe11F0AdvJks
Radio buton settings:
- Item: ["1";"2";"3"]
- OnChange:
Patch(
'Market segment survey';
LookUp('Market segment survey'; Client = Title2.Text);
{ Q1: Radio1.Selected.Value }
)
- Reset: varReset
- Default: LookUp('Market segment survey';Client=Title2.Text;Q1)
Save/Backup settings:
Refresh('Market segment survey');;
Set(varReset;false);;
Set(varReset;true);;
Navigate(Screen1)​
Have you any idea?
Thanks!!