Range

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

Guest

Hello,

Is there a better way to start this if statement - it is
not working for me

If ActiveCell.Address = Range("$a$f1278").Address Then
 
hard to tell. $a$f1278 isn't a valid address you could mean

af1278
a1278
f1278

You don't need $ in VBA for an argument to Range

You could do

If ActiveCell.Address = "$AF$1278" then

You do need the dollar signs here because the comparison is to a string that
would match the results of the Address argument.
 
Hi

Do you mean
If ActiveCell.Address = Range("$af$1278").Address Then

--
XL2002
Regards

William

(e-mail address removed)

| Hello,
|
| Is there a better way to start this if statement - it is
| not working for me
|
| If ActiveCell.Address = Range("$a$f1278").Address Then
 

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