Hi,
I am using a checkbox as a means to automate the process. As of now, I have 7 different selections in the checkbox. Each will have its own email sent out after it has been marked as checked. As of now, I am using IF statements to attempt this but i get an improper statement error.
For example, the 7 checkbox choices are:
(1) Awaiting Approval
(2) Approved/Denied
(3) PO placed
(4) PO confirmed
(5) Receipt received
(6) Shipment received
(7) Payment issued
If I want to send an email after "(1) Awaiting Approval" is checked how would i do this?
Ive tried the code:
POstatus = input.PO_steps
If (POstatus == "(1) Awaiting Approval")
{
sendmail
(
//some information
)
}
The error always shows in the IF statement.
Thank you for any assistance
-Cory