Wasn't sure if this topic should be posted here or the Power Apps forum, but I'll give it a try here 🙂
I'm have an issue trying to Navigate to a newly created record in the new generation Command Bar with a Power FX formula. Basically, I have a custom button that creates a new record and then I want to navigate to that record right away (lets say Contacts for this example). Here's what my expression looks like:
If( Confirm("Are you sure you want to continue?"),
Navigate( Patch(Contacts, Defaults(Contacts), { 'First Name':"Test" }) )
)
Navigation to an existing record, entity/table list and new form works, but for some reason Navigate to new created record doesn't work for me. It just refreshes the current form.
Anyone got this to work?