I am working on a worksheet that allows the user to filter data between two time values of pre-recorded data. The time format on this data goes down to the tenth of a second (HH:MM:SS.0) and while the combobox list will display all of these values, when one is selected, it is truncated to just the second value. I've done a bit of looking and found a lot of info on calling time to the millisecond for the CURRENT time, but not for just formatting a display. Here is how my combobox code currently reads:
Private Sub ComboBox21_Change()
With ComboBox21
.Value = Format(.Value, "hh:mm:ss")
End With
End Sub
I've tried a few different options including adding ".0" at the end, but no luck. Also, I've noticed that the value in the linked cell when a selection is made seems to mirror what the selection itself is. I was under the impression that the linked cell would show the relative number of the selection to the total number of available selections and this is what I actually need. Does anyone know how to fix this?