If(!IsBlank(Table1.Selected),
If(
Table1.Selected.Status.Value = "Completed" || Table1.Selected.Status.Value = "Approving",
ViewForm(AForm);ViewForm(BForm);Navigate(Verify, ScreenTransition.Fade),
If((UserRole = "Role3"|| UserRole = "Role3M") && Table1.Selected.Status.Value = "Verifying",
ViewForm(AForm);EditForm(BForm);Navigate(Verify, ScreenTransition.Fade),
If((UserRole = "Admin" || UserRole = "Role1" || UserRole = "Role1M") && Table1.Selected.Status.Value = "Verifying",
ViewForm(AForm);EditForm(BForm);Navigate(Verify, ScreenTransition.Fade),
If(UserRole = "Role2" || UserRole = "Visitor",
Notify("You do not have authentication to access the data!",NotificationType.Error),
ViewForm(QCVerifyForm);ViewForm(METVerifyForm);Navigate(Verify, ScreenTransition.Fade)
)
)
)
),
Notify("Please choose an item",NotificationType.Information)
)