IF/AND OR statement

cbTexas

New Member
Joined
Jan 26, 2022
Messages
1
Office Version
  1. 365
Platform
  1. Windows
I am not used to using an IF statement but have a spreadsheet like below. What I need is to have a formula that calculates if either the lot holder or the co lot holder are 55+ in column J and puts a 1 in the column if true and 0 if not. Then in column K, if column J is 0, it needs to put a 1 if either the lot holder or the co lot holder is under 55. Otherwise I need a 0 in the column.

Please give me a formula not a program if possible.

Thanks.

1643236818525.png
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Welcome to the MrExcel forum!

Try:

Book1
ABCDEFGHIJK
1LOTLot Holder NameLot Holder DOBCo Lot Holder NameCo Lot Holder DOBSignatureLot Holder 55+Co Lot Holder 55+55+Under 55
21John Wayne1/1/1940Mary Jane Wayne5/31/1975824711
32Bill Wallace5/3/19814101
43Frank Thomas9/9/1976Linda Thomas6/4/1960466211
54Henry Ford7/4/1969Heather Ford12/25/1959536311
Sheet4
Cell Formulas
RangeFormula
J2:J5J2=IF(MAX(G2:H2)>=55,1,0)
K2:K5K2=IF(MIN(G2:H2)<55,1,0)
 
Upvote 0
Solution

Forum statistics

Threads
1,214,978
Messages
6,122,549
Members
449,089
Latest member
davidcom

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