conditional formatting

  • Thread starter Thread starter shawn
  • Start date Start date
S

shawn

How would I set formatting up to mover certain items that meet a
criteria to a different worksheet?

Thanks
 
Can't be done with formatting, conditional or otherwise. Formatting just
controls how things appear.

What you could do on the other sheet is set up an IF() statement testing the
value(s) of the cells on the first sheet, and if they meet the criteria, echo
them there on that other sheet.

Lets say you want to 'move' (not correct, as we are going to echo it) the
value in Sheet1!A1 if it is between 10 and 25.

Over on another sheet you could have a formula like this:
=IF(AND(Sheet1!A1>=10,Sheet1!A1<=25),Sheet1!A1,"")
that would display the contents of Sheet1!A1 on this sheet when it is
between 10 and 25 (inclusive), and not show anything when it isn't.
 

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