Hi @dina-yasser ,
Hope you are doing well.
If you have two apps and want the second app to modify the data entered by the first app, you can use Launch() and Param().
I made a model for you:
Add a form to the first app and mode is 'new'.

The submit button is set to the following formula.
SubmitForm(Form1);Launch("YOUR-APP-WEBLINK &source=portal",{PaA:Form1.LastSubmit.Title},LaunchTarget.New)

Launch() is the web link to the second app, which can be viewed in Apps-Details


When using it, you need to add '&source=portal' at the end of the link.
The outgoing parameter 'PaA' here is the title of the last data stored in the form.

In the second app, add a form with mode is 'edit', and the Item is set to the following formula:

Enter the data in the first app, click submit, and will be redirected to the second app.

The second app displays the rows of data entered in the first app.

Best Regards,
Wearsky