Hi All,
I have just hit a bit of a wall. All searches have turned a blank.
I need to delete the Date part of a time and date serial, it Must be done via VBA as its a scrpit that runs at night.
I have split the date into one column using the following little bit of code,
works a treat, I need another column to have the time part of the date left in the cell.
And in case you wondered its feeding into a BI platform hence the reasons for it being VB and automatic.
Many thanks in advance.
I have just hit a bit of a wall. All searches have turned a blank.
I need to delete the Date part of a time and date serial, it Must be done via VBA as its a scrpit that runs at night.
I have split the date into one column using the following little bit of code,
Code:
For Each rCell In rDynamic
rCell = Int(rCell)
Next rCell
rDynamic.NumberFormat = "dd/mm/yyyy"
And in case you wondered its feeding into a BI platform hence the reasons for it being VB and automatic.
Many thanks in advance.