Time stamps

mjb

New Member
Joined
Feb 28, 2002
Messages
12
I have a marco that checks to see if the correct version of a template is being used. This is done based on the date and time stamp of the template. It work great within my time zone however in Europe when the time is +7 hr the marco fails since the time stamp is adjusted to local time. Is their a way to do the function below based on Zulu Time rather than local time?

Public Function fileVersion(strFullFilePath As String)
Dim myVersion As String
On Error Resume Next
myVersion = ""
myVersion = Year(FileDateTime(strFullFilePath))
myVersion = myVersion & "." & Month(FileDateTime(strFullFilePath))
myVersion = myVersion & "." & Day(FileDateTime(strFullFilePath))
myVersion = myVersion & "." & Hour(FileDateTime(strFullFilePath))
myVersion = myVersion & "." & Minute(FileDateTime(strFullFilePath))
fileVersion = myVersion
End Function
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.

Forum statistics

Threads
1,215,059
Messages
6,122,917
Members
449,093
Latest member
dbomb1414

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top