Hi all,
I have made an PowerApps Form. In the form, i want in new mode, two fields make in view mode.
When i edit the form, the fields needs to be edit.
Normally i use this, when i only want to show the fields in edit modus:
If(SharePointForm1.Mode = FormMode.New; false; true)
But i want to see the fields in ForMode.New but how can i make them in view.mode?
I thought this make sence to my but i didn;t work very well:
If(FormMode.New = SharePointForm1.DisplayMode.View; false; true;)