Hi,
I have added a custom datacard and inserted a text input inside.
Then i am running a Patch function to save the data inside of it. Formula is working fine but it was not getting the value inside my txtInput. My list is just getting a blank entry even if i have a value on it. How do i make this work?
Patch('Notes',Defaults('Notes'),{ Title: Form1.LastSubmit.Title },{Note:txtInput.Text})
Hi @powerdevkris ,
Please set Onchange property pf text Input control to:
Set(var,txtInput.Text)
Then modifty your patch function
Patch('Notes',Defaults('Notes'),{ Title: Form1.LastSubmit.Title },{Note:var})
Best Regards,
Wearsky
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.