S
sboyd
I'm using two text boxes to gather hours and minutes HR:MN They are
set to 2 characters each. I have a date picker field that the user
enters the date. I have a rule on the min field that says if the
Plan_Depart_Date is present and the Min text field is present to set
the value for the Plan_Depart_Time to:
concat(substring(@Planned_Departing_Date, 6, 2), "-",
(substring(@Planned_Departing_Date, 9, 2)), "-",
(substring(@Planned_Departing_Date, 1, 4)), " ", @P_Depart_Time_Hr,
":", ., ":00")
Planned_Departing_Date is a date field
I'm getting 10-02-2007 23:14 but I'm getting not a valid date.
What I want it to do is to concatenate the date, the hour and the
minute (the hour and minute are military time)
and set the value to the Plan_Depart_Time to
10-01-2007 11:14 PM as a valid date.
Does anyone have the solution. I'm been working on this for 2 days.
Thanks
set to 2 characters each. I have a date picker field that the user
enters the date. I have a rule on the min field that says if the
Plan_Depart_Date is present and the Min text field is present to set
the value for the Plan_Depart_Time to:
concat(substring(@Planned_Departing_Date, 6, 2), "-",
(substring(@Planned_Departing_Date, 9, 2)), "-",
(substring(@Planned_Departing_Date, 1, 4)), " ", @P_Depart_Time_Hr,
":", ., ":00")
Planned_Departing_Date is a date field
I'm getting 10-02-2007 23:14 but I'm getting not a valid date.
What I want it to do is to concatenate the date, the hour and the
minute (the hour and minute are military time)
and set the value to the Plan_Depart_Time to
10-01-2007 11:14 PM as a valid date.
Does anyone have the solution. I'm been working on this for 2 days.
Thanks