I have a PowerApp that is connected to a Dataverse table. When I click a "Submit New Form", I want to create a blank row in the dataverse table. Nothing I have tried has worked and I can't figure out why. When I use this code, it navigates me to the correct screen, but the screen is blank and shows no Edit form....
Here is the code in my OnSelect of my New Button:
Set(
NewRequest,
Patch(
'S3 Log UAT TESTs',
Defaults('S3 Log UAT TESTs')
)
);
Set(
varFormID,
NewRequest.S3ID
);
EditForm(Form1);
Navigate(scrnForm);
Here is the code for my Items Property of my Form:
LookUp(
'S3 Log UAT TESTs',
S3ID = varFormID
)
What am I missing here? This is how we typically setup our PowerApps when building new Forms for SharePoint lists. Is there a difference here because my datasource is the Dataverse?