Hi, I have four drop downs , which stores hours and minutes of start and end.
which is as shown below FIRST and LAST fields.

Now I want to calculate difference between hours and minutes.
I have used below formula on default property of text field (No of hours) to calculate number hours.
Text(((HourValue2.Selected.Value*60+MinuteValue2.Selected.Value)-( HourValue1.Selected.Value*60+MinuteValue1.Selected.Value))/60,"[$-en-US]###.00")

where hours is calculating properly. But minutes is not calculating exactly.
Kindly help me to exact time difference.