Delete a Column when in a Macro-Worksheet Event?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Good Morning, Experts:

I have a workbook with Macros and one of the worksheets is data that I have
copy/pasted from another application. This application has a hidden column,
but pops that hidden column when I copy/paste it to the Macro'd Workbook. I
want to delete that Column "C" before I run my RunAll Macro for the entire
workbook. Is this a worksheet event and if so, what would the View Code
look like (I'm really new at View Codes)?

Can anyone help me?
 
Put it in the runallmacro before the rest of the code runs

Columns("C:C").Delete

'rest of the code
 
Peo: Thank you for lending your expertise.....it worked perfectly. I guess
I was making it more difficult than it had to be...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top