Excel IF Statement Between Two Numbers: 4 Ideal Examples

Method 1 – Use IF Statement Between Two Numbers in Excel

1.1. Use IF Statement Between Two Numbers Exclusively

  • Declare the boundary numbers.
  • We have taken 32 and 26 as Upper Limit and Lower Limit.
  • Find out if the age is between this boundary condition.

Declare Upper and Lower Limits of Boundary

  • Write the following formula in the formula bar of the D5 cell:
=IF(AND(C5>$C$16,C5<$C$15),"Yes","No")
  • Press Enter to see the result.
  • This No result indicates that the value is not between the limits.

Formula for using IF Statement between dates

If the value of the C5 cell( Age of the employee) is greater than the C16 cell (Lower Limit) and less than the C15 cell (Upper Limit) it will show Yes. It will show No.
  • Drag down the formula in the D6:D13 range with the Fill Handle option.

Drag Down formula of if statement in excel between two numbers in following cells

  • Observe the result in the D column.
  • The age is between 26 and 32 exclusively, it is showing Yes.
  • The result is showing No.

Result of if statement in excel between two numbers exclusively


1.2. Use IF Statement Between Two Numbers Inclusively

  • The following step, we will find out if the age is between this boundary condition with the Inclusive condition.
  • Write down the following formula in the formula bar of the E5 cell:
=IF(AND(C5>=$C$16,C5<=$C$15),"Yes","No")
  • Press Enter to see the result.
  • This Yes indicates that the value is between the limits.

Formula for IF statement between two numbers in Excel

If the value of the C5 cell( Age of the employee) is greater or equal to the C16 cell (Lower Limit) and less or equal to the C15 cell (Upper Limit) it will show Yes.
  • Dag down the formula in the E6:E13 range with the Fill Handle option.

Drag Down formula of if statement excel between two numbers in following cells

  • You can observe the result in the E column.
  • If the age is between 26 and 32 inclusively, it is showing Yes.

Result of if statement excel between two numbers inclusively

The numbers between 26 and 32 are showing Yes. For the Inclusive option, 26 and 32 are showing Yes and for the Exclusive option, 26 and 32 are showing No.

Method 2 – Check If Value Is Between Maximum and Minimum Numbers


2.1. Consider Exclusive Result

  • Declare the boundary numbers.
  • We have taken 35,38, and 34 as Upper Limits.
  • We have taken 28,27, and 26 as Lower Limits.
  • We have to calculate the Upper Limit and Lower Limit.
  • We will find out if the age is between the calculated boundary condition.

Declare Upper and Lower Limits of Boundary

  • Write the following formula in the formula bar of the D5 cell:
=IF(AND(C5>MIN($C$16:$E$16),C5<MAX($C$15:$E$15)),"Yes","No")
  • Press Enter to see the result.
  • This No result indicates that the value is not between the limits.

Formula of IF Statement to check If Value Is Between Maximum and Minimum Numbers

Using the MIN function we will get the Lower Limit of the C16:E16 range and by the MAX function, we will get the Upper Limit of the C15:E15 range. If the value of the C5 cell( Age of the employee) is greater than the calculated Lower Limit and less than the calculated Upper Limit, it will show Yes.
  • Drag down the formula in the D6:D13 range with the Fill Handle option.

Drag Down formula of if statement

  • Observe the result in the D column.
  • If the age is between the calculated upper and lower range exclusively; it is showing Yes.

Result after Checking If Value is Between Maximum and Minimum Numbers Exclusively

 


2.2. Find Inclusive Result

  • Find out if the age is between this boundary condition with the Inclusive condition.
  • Write down the following formula in the E5 cell:
=IF(AND(C5>=MIN($C$16:$E$16),C5<=MAX($C$15:$E$15)),"Yes","No")
  • Press Enter to see the result.
  • This Yes result indicates that the value is between the limits.

Formula for checking values between maximum and minimum

Using the MIN function we will get the Lower Limit of the C16:E16 range and by the MAX function, we will get the Upper Limit of the C15:E15 range. If the value of the C5 cell (Age of the employee) is equal or greater than the calculated Lower Limit and equal or less than the calculated Upper Limit, it will show Yes.
  • Drag down the formula in the E6:E13 range with the Fill Handle option.

Drag Down formula of if statement

  • Observe the result in the E column.
  • The age is between the calculated upper and lower range inclusively, it is showing Yes.

Result after Checking If Value is Between Maximum and Minimum Numbers Inclusively

 


Method 3 – Insert IF Statement Between Two Dates in Excel

STEPS:

  • Declare the boundary numbers.
  • We have taken the 1st of January, 2022 and 31st of December, 2022 as Lower Limit and Upper Limit.
  • Find out if the joining date is between this boundary condition.
  • Write the following formula in the formula bar of the D5 cell:
=IF(AND(C5>=$C$16,C5<=$C$15),"Yes","No")
  • Press Enter to see the result.

Formula for IF statement between two dates

If the value of the C5 cell( Joining Date of the employee) is greater or equal to the C16 cell (Lower Limit) and less or equal to the C15 cell (Upper Limit), it will show Yes.
  • Drag down the formula in the D6:D13 range with the Fill Handle option.

Drag Down formula of if statement

  • Observe the result in the D column.
  • The joining date is between 1st January and 31 December 2022 then it is showing Yes.
  • The result is showing No.

Result after Inserting IF Statement Between Two Dates


Method 4 – Apply IF Statement to Check If Dates Are Within Some Specific Days

4.1. Within Next N Days

  • Write down the following formula in the formula bar of the D5 cell:
=IF(AND(C5>TODAY(),C5<=TODAY()+7),"Upcoming Joining","Already Joined")
  • Press Enter to see the result.
  • Today is 11th January 2023.
  • The date is not between 11 to 18th January 2023, it is showing Already Joined.

Formula for checking if dates are within next n days

  • Drag down the formula in the D6:D13 range with the Fill Handle option.

Drag Down of IF statement formula

  • Observe the result in the D column.
  • If the joining date is between today and (today+7) days, it is showing Upcoming Joining.
  • The result is showing Already Joined.

Result after Applying IF Statement to Check If Dates Are Within Next N Days


4.2. Within Last N Days

  • Write down the following formula in the formula bar of the D5 cell:
=IF(AND(C5>TODAY(),C5<=TODAY()+7),"Upcoming Joining","Already Joined")
  • Press Enter to see the result.
  • Today is 11th January 2023.
  • The date is not between 11 to 4th January 2023, it is showing No.

Formula for checking last n days

  • Drag down the formula in the D6:D13 range with the Fill Handle option.

Drag Down of formula

  • Observe the result in the D column.
  • If the joining date is between today and (today7) days, it is showing Recently Joined.
  • The result is showing No.

 

Result after Applying IF Statement to Check If Dates Are Within Last N Days


Download Practice Workbook

To practice by yourself, download the following workbook.


Related Articles

Get FREE Advanced Excel Exercises with Solutions!
Sudipta Chandra Sarker
Sudipta Chandra Sarker

Sudipta Chandra Sarker, BSc, Electrical and Electronic Engineering, Bangladesh University of Engineering and Technology, Bangladesh, has worked on the ExcelDemy project for over a year. For ExcelDemy, he has authored 42 articles and reviewed over ten articles. He is employed as a junior software developer at the moment. He aims to create various useful Microsoft Office Add-ins, extending the functionality of Office programs. His interests span Microsoft Office Suites, Data Science, VBA, VB.NET, ASP.NET, C#, Excel, and Desktop... Read Full Bio

We will be happy to hear your thoughts

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo