Hi All,
Not sure why I am getting this error. I think it has something to do with the Mode=Edit but not sure how to correct it.
If(EditForm1.Mode=Edit, Parent.Default, User().FullName)
Solved! Go to Solution.
The FormMode.Edit specifically is the for Form operations. However there is also a DisplayMode.Edit, so power apps has to figure out whether you are referring to DisplayMode.Edit Or FormMode.Edit.
Just stating Mode=Edit could be confusing as to DisplayMode or FormMode
------------
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.
Think I found it. I used:
If(EditForm1.Mode=FormMode.Edit,Parent.Default, User().FullName)
It would still be nice to know the difference between using Mode=Edit and FormMode.Edit
The FormMode.Edit specifically is the for Form operations. However there is also a DisplayMode.Edit, so power apps has to figure out whether you are referring to DisplayMode.Edit Or FormMode.Edit.
Just stating Mode=Edit could be confusing as to DisplayMode or FormMode
------------
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.
Got it, that makes sense thank you for explaining!