Hi,
I am currently try (unsuccessfully) to write macro (which can become part of a macro I am writing in MS Project - so round down a column of dates/times so 16/11/2011 13:14 would become 16/11/2011 00:00. The formula I would use in excel would be =Rounddown (D7,0) where column D is Start_Date and 7 would be a cell in part of the range.
The set up is Start_Date will always be column D but the range in which D2 onwards so could be variable, what I want to do is right a bit of
VB code that will automatically rounddown all of these field, once I have this working in excel I would then transfer this to the MS project macro as it exports dates into an excel spreadsheet.
Here is what I have so far, but errors out and I am unsure how to do it correctly
Dim Column As Variant
Dim Rounddown As Double
If Column = Start_Date Then
WorksheetFunction.roundown = Rounddown(D, 0)
End If
End Sub
Any help/adivse would be very much appreciated