How to check if one of the conditions returns "true"?

G

Guest

I use conditional formatting to highlight cells with wrong data. I want to
write a macro to check if any conditions are met. However even if the cell
has green highlight the macro still "sees" it as white i.e. the color of the
cell if conditional formatting conditions are false.

For example if the "usual" color of the cell is white (2) and in case I
enter number "1" it becomes green (35) even if I can see that it is green,
macro does not. If I try to use the following line in macro:
If Activecell.Interior.ColorIndex=35 then goto green else goto white
I will be directed to white: not green:

So, if anyone knows how to check that the conditions have been met please,
PLEASE teach me, I need your help very much.



Thanks
 
G

Guest

Plagiarize the logic used in the conditional format. Just make VBA use the
same test(s) as the conditional formatting equations.
 
G

Guest

I use the formatting in many cells and check many many different conditions.

I would check conditions instead of checking if any of them have been met.
Unfortunately my macro would be probably 20 pages long if I use this
approach.

Thank you anyways :)
 
G

Guest

Thank you very much for the link. I am not sure if I am smart enough to do it
though. I did not read the whole thing but I use "formula is" not "value is"
and I use both relative and absolute addresses and it might not be doable
anyways.

Now I know that I cannot check it quickly though :( too bad :( but thanks
for saving me time. :)



As for your suggestion... I was thinking about it (and another user already
offered it to me too) but I check too many conditions and when I think about
finding all the cells with conditional formatting and copying the conditions
and using loops, etc...

The thing is that I only wanted to worn a user there was a wrong data so I
am not sure if it is worth it. I could just remind them that if there is any
highlighted cell they need to change it, but they see the colored cells
anyways. If it was easy to check I would only display the message to those
who did not enter everything correctly. oh well... I will still think about it


Thank you very much for your help...
 

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

Top