Copying a DV Formula Q

  • Thread starter Thread starter John
  • Start date Start date
J

John

I have this DV formula, kindly supplied by this NG, and I wish to copy its
relative references down 50 rows, but because of the " " in C10, once I copy
it, it remains at C10. It's easy to change, but is there a quicker way to do
this?

=AND(INDIRECT("C10")<>"",LEN(E10)<=18)


Thanks
 
Hi John

One way
=AND(INDIRECT("C"&ROW(C10))<>"",LEN(E10)<=18)

However, did you notice the posting by Dave Peterson which said he didn't
need to use the Indirect method if you uncheck Ignore Blanks on the DV dialogue.

Try
=AND(C10<>"",LEN(E10)<=18) with the box uncehcked.

Regards

Roger Govier
 
Thanks Roger, I did but I thought I had it unckecked anyway. These posts
have taught me alot that I didn't know.
 

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