Hi, working on a timesheet app. I have a start and finish time dropdown and a AM/PM drop down box. I have a hidden label that i want to show army time of what the user selected. On the text properties of the hidden lablel, i can put in the below and it works fine.
If(MonFinish.Selected.Value="12:15"&MonAMPM.Selected.Value,"AM","1215")
But i need to be able to convert all times selected. If i put in the hidden label text properties, see below, i get an error. I have tried Or and && but only shows true and false in the label instead of the time e.g. 1215
If(MonFinish.Selected.Value="12:15"&MonAMPM.Selected.Value,"AM","1215");
If(MonFinish.Selected.Value="12:30"&MonAMPM.Selected.Value,"AM","1230")
Can you please assist