Happy New Years everyone,
I have been working an App for the HR department, most of it works the way I want it too. But, I am having trouble trying to use Concurrent to patch and submit form. I have tried for a couple days on and off to get it to work. Not sure if I'm missing a period, a semicolon, or a parenthesis.
If someone would take a look at the code and let me know.
If(drpTType.Selected.Value, "Voluntary",
Concurrent(
Patch(
HR_Terminations,
Defaults(HR_Terminations),
{
Title:varG_EmpID,
EmpName:varG_EmpName,
Logged_User:User().FullName
}
);
SubmitForm(frmVol)
)
);