Hi PowerApps Friends
Can you help with this?
This is the scenario.......
a) I have a gallery which shows a list of customer locations - i.e. a customer may have more than one shipping location. Because of space the Gallery only shows 4 fields so that the user can see which location is which.
b) I have added a 'Plus' icon so that the user can click this to add a new location against the customer that they have selected.
c) So far I have managed the following which only works up to a point - i.e. the new record is saved and the fields I require to be patched through are patched through.
QUESTION: How do I Navigate to the record that has just been created so that the user can input further data, rather than one of the locations that have already been created. I am trying to achieve a seamless user experience so I'm trying to do it on one click.
Thank you
Set(
varRecord,
ThisItem
);
Patch(
CCLBPLocs,
Defaults(CCLBPLocs),
{'Loc BPRef': varRecord. 'Loc BPRef', 'Loc BPName': varRecord. 'Loc BPName'}
);
Navigate('New BP Location Form');
EditForm('New BP Location Form');