If-then-next question

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

Guest

I have a list of stores that have goals each month.
(store # is in col a, actual sales in col b, goal sales in col c,
actual-goal in col d

I want it to do the following:
if(and(col d>0,col d<100)col a,"")
Once it has evaluated that line, I want it to go to the next line and do the
same thing.

Is there a way to do this?

Thank you.
 
Put this in E2 and copy it down column E........

=IF(AND(D2>0,D2<100),A2,"")

Vaya con Dios,
Chuck, CABGx3
 
Thanks Chuck. I guess I wasn't clear. What I want to end up with is a short
list of the 8-10 stores that fit into the criteria. i.e. is the store over
0 and below 100, if it is print the store number, if not, skip it. Go on to
the next store and evaluate it.
Like a Do-Loop.

thanks.
 
Oh, well then, take a look at Data > Filter > Autofilter > choose the
dropdown arrow on your column of interest and select the Custom option and
set up your conditions..........

Vaya con Dios,
Chuck, CABGx3
 

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