Calculation Using IF Statement

acool

Board Regular
Joined
Feb 10, 2023
Messages
107
Office Version
  1. 365
Platform
  1. Windows
Hi Everyone!

I am currently trying to create an if statement formula which calculates a text output based on the 3 inputs below. In order to be considered "Standard Size", Column A must be <=18, Column B must be<=14 and Column C must be <=8. If any of these inputs are greater than the conditions stated, I would like to return a value of "Oversized." If anyone could please provide some insight on how to create this formula, that would be greatly appreciated. I have attached a screenshot below of the end-goal that I am trying to accomplish. Thank You!


1682004988661.png
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
How about
Excel Formula:
=IF(AND(A2<=18,B2<=14,C2<=8),"Standard","Oversize")
 
Upvote 0
Solution
Does this do what you want?

=IF(AND(A2<=18,B2<=14,C2<=8),"Standard Size","Oversized")
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,373
Messages
6,124,551
Members
449,170
Latest member
Gkiller

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