IF Formula

ThedoreHolley

New Member
Joined
Sep 26, 2016
Messages
49
Office Version
  1. 365
Platform
  1. Windows
I'm trying to do a If formula for ARMY Promotions.

NAMERANKBASDTISDORTIGZONE7-Oct-17
FOXSPC2-Feb-14441-Jul-1615FALSE

<tbody>
</tbody><colgroup><col span="3"><col><col span="2"><col><col></colgroup>


This is what I'm starting with I need the zone Colum to give me Primary or secondary.

=IF((AND(D2>=17,D2<34, F2>=5,<6)), "SECONDARY")=IF((AND(D2>=35, F2>=7)), "PRIMARY")


Basically need secondary between 17-34 TIS and between 5-6 TIG then that's secondary
Primary 35 and above TIS and 7 above TIS.

Any help
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Try

=IF(AND(D2>=17,F2>=5),IF(AND(D2>=35,F2>=7),"PRIMARY","SECONDARY"),"UNDEFINED")
 
Upvote 0

Forum statistics

Threads
1,215,756
Messages
6,126,690
Members
449,329
Latest member
tommyarra

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