If either of two cells falls between 0 and 90, then WJ

Nanaia

Active Member
Joined
Jan 11, 2018
Messages
306
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
At some point I will be able to help more than asking for help.
I'm trying to get it so the selected cell will display "WJ" if cell Z2 or AA2 has a number greater than 0 but less than 90.
So far I have not been successful at getting it to work. You all are so knowledgeable that it's probably as easy as breathing... but I'm a work in progress. :)
Thanks for your help.
Regards,
Nanaia
"Do or do not, there is no try"~Yoda
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
You could use this

=IF(COUNTIFS(Z2:AA2,">0",Z2:AA2,"<90"),"WJ","something else")
 
Upvote 0
Steve,
Simply put -- YOU ROCK! :cool: I'm learning so much from you it's making me giddy. ;)
Thank you!
Nanaia
"Do or do not, there is no try"~Yoda
 
Upvote 0
My contribution comes from a different approach, but should still achieve the same result.

=IF(OR(AND($Z$2>0,$Z$2<90),AND($AA$2>0,$AA$2<90)), "WJ", "")
 
Upvote 0

Forum statistics

Threads
1,215,603
Messages
6,125,782
Members
449,259
Latest member
rehanahmadawan

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top