N Number11 Member Local time Today, 13:40 Joined Jan 29, 2020 Messages 623 Jun 24, 2022 #1 So i have a filed that is set as text and i need to convert as follows.. 22/07/2022 12:00-16:00 from the above i need to take the date and time window and split them. 22/07/2022 12:00-16:00 is this possible?
So i have a filed that is set as text and i need to convert as follows.. 22/07/2022 12:00-16:00 from the above i need to take the date and time window and split them. 22/07/2022 12:00-16:00 is this possible?
G Galaxiom Super Moderator Staff member Local time Today, 22:40 Joined Jan 20, 2009 Messages 12,895 Jun 24, 2022 #2 This will make it a date datatype CDate(Left(fieldname, 10)) This will return the text of the time range. Mid(fieldname,12 ,11)
This will make it a date datatype CDate(Left(fieldname, 10)) This will return the text of the time range. Mid(fieldname,12 ,11)
N Number11 Member Local time Today, 13:40 Joined Jan 29, 2020 Messages 623 Jun 24, 2022 #3 That worked, thanks