hi guys , im trying to add data into my dataverse with canvas,
i have 10 text input and a save button im trying that the users insert this 10 data and with a button i can save it into dataverse is possibile?
Thx

hi guys , im trying to add data into my dataverse with canvas,
i have 10 text input and a save button im trying that the users insert this 10 data and with a button i can save it into dataverse is possibile?
Thx
Connect your dataverse from powerApps from Add Data section.
Insert an Edit Form. Set it's datasource property as "TableName" of your datasource table.
Insert two button. Set it's text "New" and "Submit" relatively.
On New button OnSelect property:
NewForm(Form1);
On Submit button OnSelect Property:
SubmitForm(Form1);