Ok thanks @oappdev ,
I am in Queensland, Australia.
The are probably many ways of doing this, but I will run with a Variable.
You have a Request form with a Status field - I will assume for the moment this is a text value,The Form name is not needed, but the control name (the field that is showing the data) is.
I will call it RequestStatus (its name will probably be TextInputxx - rename code below to this)
On the button to switch screens add to the code
Set(vStatus,RequestStatus.Text)
Here I am also using a Form name you will have to rename to yours - the form I will call ReportWriter
Put on the Default of the control you have labelled Report Status (also replace CurrentDefault with what the Default is presently)
If(
ReportWriter.Mode = FormMode.New,
vStatus,
CurrentDefault
)
To clean up at the end, put this on anything that exits or submits the form
Set(vStatus,Blank())
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.