IF Formulas with 2 variables

bilbolobi

New Member
Joined
Apr 2, 2014
Messages
3
Thanks for looking at this post. I am looking for some assistance.
I have a spreadsheet with a number of individual sites (Actualy 9K) each site can have a number of start dates. I need to identify per site any start dates which would be < to 14 Days.
This is for each individual sites.
thanks Antoine

Site
Start
Site 1
01/03/2013
Site 1
02/04/2013
Site 2
03/03/2013
Site 2
04/12/2013
Site 1
04/03/2013
Site 2
04/07/2013

<tbody>
</tbody>
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
Welcome to the Board!
I need to identify per site any start dates which would be < to 14 Days.
14 days from what? The current date? Some other date?
What actually do you want to happen to these records? Are you formatting them or want to return some text or something?
Maybe if you tell us the expected results based on the sample you posted, it will help show what you are after?
 
Upvote 0
Hi Joe
The objective is to identify if one site has received 2 work order in less than 14 days. If yes the cell will say > 14 days.
Thanks

edward
 
Upvote 0
Let's say that you data is in columns A and B and your first row of data is in row 2, and you have 9000 rows of data. Then you can place this formula in cell C2 and copy down for all rows:
Code:
=IF(SUMPRODUCT(--(A$2:A$9000=A2),--(B$2:B$9000>=(B2-14)),--(B$2:B$9000<=(B2+14)))>1,"2 work orders in less than 14 days","")
 
Upvote 0
Let's say that you data is in columns A and B and your first row of data is in row 2, and you have 9000 rows of data. Then you can place this formula in cell C2 and copy down for all rows:
Code:
=IF(SUMPRODUCT(--(A$2:A$9000=A2),--(B$2:B$9000>=(B2-14)),--(B$2:B$9000<=(B2+14)))>1,"2 work orders in less than 14 days","")

Hi Joe,

Thanks so much for your help. I was trying to identify an alternative last night and came up with the long way
=IF(A2=A3,B3-B2,"")
=IF(SUMIF($A$2:$A$6,A2,$C$2:$C$6)>14,"WARNING","")

Thanks again
 
Upvote 0

Forum statistics

Threads
1,215,429
Messages
6,124,835
Members
449,192
Latest member
mcgeeaudrey

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