Oh, yes. I mean delete.
We get lots of data from this website that we import into our database, and a lot of it we don't need.
I can clean it up pretty quickly now by hand, but I'd rather write a script to do it.
Is just clearing a safer idea when using macros, and then maybe delete excess at the end of the script?
Main Topics
Browse All Topics





by: sebastienmPosted on 2005-02-07 at 13:57:04ID: 13249209
Hi, ntireRow.D elete .EntireCol umn.Delete
By Delete, do you really mean .. well... 'Delete', or just 'Clearing' the cells?
1a. Delete a row: eg row of B12 --> row 12
ActiveSheet.Range("B12").E
1b. Delete a column: columns of B2:F4 --> cols B,C,D,E,F
ActiveSheet.Range("B2:F4")
Regards,
Sebastien