This is probably quite simple but I've googled and can't find an answer. I am also just learning VBA (I have done VB.NET etc. etc.)
If the cell the macro is trying to copy is a date I just get a number copied, e.g. 40352 from 23/06/2010
Here is a code snippet, any help most appreciated, thanks:
Sheet5.Range(Cells(rwStartNumber, currentColumn + 1).Address(False, False)) =
Sheet5.Range(Cells(rwStartNumber, currentColumn).Address(False, False))
Obviously this is in two loops, but that's not where the problem is.
Thanks!