IF,Then and else??

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

Guest

After doing a find for a specific text, I would like to say the following,
but in actual excel langague:

If ActiveCell = "A5" Then Range("A1:G4").Select Else Range("A1:G6").Select

I know this is wrong as it's looking for the text A5 instead of the Cell A5,
does anyone know how to remedy this?

Thanks..... Alastair.
 
Hi

If ActiveCell.address = "$A$5" Then

The 'address' property returns absolute reference by default.
 

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