Hi @Dhinesh28R ,
Put this in your startHour Items property:
RenameColumns(DropColumns(AddColumns(Sequence(25,0),"DateText",Text(Value,"00")),"Value"),"DateText","Value")
And this in the startMin Items property:
RenameColumns(DropColumns(AddColumns(Sequence(59,0),"DateText",Text(Value,"00")),"Value"),"DateText","Value")
Repeat for your endHour and endMin Items.
You can convert the selected values to date type using DateTimeValue and compare them using DateDiff
For my test condition I have output a text box but you could use this condition in the visible property of a label, or to trigger an alert.
If(
DateDiff(
DateTimeValue(startHour.Selected.Value & ":" & startMin.Selected.Value),
DateTimeValue(endHour.Selected.Value & ":" & endMin.Selected.Value),Minutes
) <0,
"Alert! Start time is less that end time",
"Start time is greater than end time"
)