Hi All,
I have a simple dropdown which is populated by an array. I am trying to set global variables based on the selection of the drop down. For testing I have set 3 text input default values to the global variable. During testing I have to select the dropdown item twice before it populates the input text.
If(
Dropdown2.Selected.Value = "Refined Knowledge Login/Access",Set(varDDS,{Subject: "New RK Login Access", Email: "EcolabCDS@service-now.com", Message: "Please describe your need. New access, login problem or anything else."}),
Dropdown2.Selected.Value = "3D Trasar controller connectivity to RK", Set(varDDS,{Subject: "NEW RK 3DT connectivity", Email: "EcolabCDS@service-now.com", Message: "Please detail customer and site name, and controller details (serial #, asset name, etc.). What issue are you facing in RK?"})
,Set(varDDS,{Subject: "Subject", Email: "Email", Message: "Message"})
)