Can I extract the hours and minutes of a time field with LS?
Subject: LS: Time Fields → extracting h
Look up documentation there are plenty of examples there.
Subject: LS: Time Fields → extracting h
yes, with HOUR and MINUTE.
Subject: RE: LS: Time Fields → extracting h
Unfortunately I always get a type mismatch:
Dim event_end As String
event_end = Hour(docData.ZeitB) & “:” & Minute(docData.ZeitB)
Subject: Try: Hour(docData.ZeitB(0))