I have in the Main screen a label the status change based on their answers submitted. However I on the last screen where they submit there answer they click on a button that submit their answers to the SharePoint. I don't want the employee to know the Result before they submit and click on their office. How I add to the below text not be show the message till they submit.

The Well-check Status Required OnText Code - "Every Box has different Q&A"
If(
IsBlank(ListBox3_1.Selected.Value),
"Well-check Status Required",
If(
ListBox3_1.Selected.Value = "Home",
"Work from Home",
ListBox4_1.Selected.Value = "Yes",
"Work from Home, contact HR",
ListBox5_1.Selected.Value = "Yes",
"Work from Home, contact HR",
ListBox5_2.Selected.Value = "Yes",
"Work from Home, contact HR",
ListBox5_2.Selected.Value = "No",
"Clear for Office"
)
)
On the Submit button - It is actually a Gallery that has all office and every employee click on his office and submit.
So, the OnSelect Code is
ith({_user: User()},
Patch(
'Back to Work Eligibility',
Defaults('Back to Work Eligibility'),
{
Title: "Status from " & _user.FullName & " on " & Text(Today(), ShortDate),
'Check-In Date': Today(),
'Eligibility Status': EmployeeEmail_1,
Result: lblResult_1.Text,
'Working Location': lblWorkingFrom_2.Text,
'Office Location': ThisItem.Title,
'Next Check-In Date': DateAdd(Today(), 1, Days),
Employee: {
Claims: "i:0#.f|membership|" & Lower(_user.Email),
Department: "",
DisplayName: _user.Email,
Email: _user.Email,
JobTitle: "",
Picture: ""
}
}
)
);
Navigate(scrMain, ScreenTransition.Fade);