If with multiple or

T

TFMR

Dear All,

I want the following formula:-

First the formula check wether B2 = Start if no then 0 if yes then check
wether B2=B1 if no then 0 otherwise C1 = "Remove"

Thanks & Regards
 
P

Pete_UK

Don't know what "start" is, but try this in C1:

=IF(B2<>start,0,IF(B2=B1,"Remove",0))

Hope this helps.

Pete
 
L

Lars-Åke Aspelin

Dear All,

I want the following formula:-

First the formula check wether B2 = Start if no then 0 if yes then check
wether B2=B1 if no then 0 otherwise C1 = "Remove"

Thanks & Regards


Try this formula in cell C1:

=IF(B2<>"Start",0,IF(B2<>B1,0,"Remove"))

Hope this helps / Lars-Åke
 
J

John C

If you want remove to appear in C1, then the formula goes in C1. Without
using VBA, you can't have data populate a completely different cell based on
a separate cell (without it's own formula).
 

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