T
Tod
I have a column with dates and times. I want to take the
date out. So I'm doing it like this:
For each Cell in ActiveSheet.Range("A2:A10000")
Cell.Value = Cell.Value - Int(Cell.Value)
Next Cell
This works, but it adds minutes to the procedure. Is
there a statement or other that will just make the change
to the entire range at once?
tod
date out. So I'm doing it like this:
For each Cell in ActiveSheet.Range("A2:A10000")
Cell.Value = Cell.Value - Int(Cell.Value)
Next Cell
This works, but it adds minutes to the procedure. Is
there a statement or other that will just make the change
to the entire range at once?
tod