I ve been struggling with this for quite sometime now without any result
I have a details page containing the following fields among others :
Current_Status = Dropdown list with custom values (New,Assigned,Scheduled,Performed)
Assigned_AE = Cascated Dropdown
Close_Date = Date field
A Today Variable should also be configured to reflect todays date.
I would like upon submission of the form to change the value (to one of the 4 standard values contained on the dropdown list) of Current_Status, based on the following criteria :
IF Assigned_AE.value = "-None-"
Current_Status.Value = "New"
ELSE
IF Close_Date IsBlank
Current_Status.Value = "Assigned"
ELSE
IF Close_Date > Today
Current_Status.Value = "Scheduled"
ELSE
Current_Status.Value = "Performed"
ENDIF
ENDIF
ENDIF
Could someone pls help me with the JS code ? I have tried a lot of different things without any luck !
You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
Question
theconav
Hello !
I ve been struggling with this for quite sometime now without any result
I have a details page containing the following fields among others :
Current_Status = Dropdown list with custom values (New,Assigned,Scheduled,Performed)
Assigned_AE = Cascated Dropdown
Close_Date = Date field
A Today Variable should also be configured to reflect todays date.
I would like upon submission of the form to change the value (to one of the 4 standard values contained on the dropdown list) of Current_Status, based on the following criteria :
IF Assigned_AE.value = "-None-"
Current_Status.Value = "New"
ELSE
IF Close_Date IsBlank
Current_Status.Value = "Assigned"
ELSE
IF Close_Date > Today
Current_Status.Value = "Scheduled"
ELSE
Current_Status.Value = "Performed"
ENDIF
ENDIF
ENDIF
Could someone pls help me with the JS code ? I have tried a lot of different things without any luck !
Thank you very much in advance.
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.