Find the first empty column

  • Thread starter Thread starter Simon
  • Start date Start date
S

Simon

I would like a function similar to below, but for the
first empty column within row 36.

Below is what I use for the first empty row.

last_row = wks_Stock.Cells(Rows.Count, 1).End(xlUp).Row


Thanks,

Simon
 
Thanks,

'ToLeft' - I was using 'Left'

-----Original Message-----
Hi Simon,

Try:

Cells(36, Columns.Count).End(xlToLeft)(1, 2)

---
Regards,
Norman






.
 

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