Incorporating Filters within a column into a formula

PrettySophia

New Member
Joined
Nov 25, 2015
Messages
3
Hello,

I was wondering how I would go about putting together 2 separate formulas for the case below:

I have table, within the table I have a column named " Status" and "Date of request".

Within the "Status" column, I have two filters: "Waiting on dealer" and "part is locked"

I would like to create a formula that captures all the entries within the filter "Waiting on dealer" and automatically shows if the entry exceeded exactly 7-12 days from the column "Date of request"


The same goes for the second formula : a formula that captures all the entries within the filter "Part is locked" and automatically shows if the entry exceeded exactly 12-30 days from the column "Date of request"



If this seems unclear or complicated, please let me know what information you need and I will get back to you ASAP!!

I a putting together a very important spreadsheet for work and I would really appreciate if anyone can help me on this issue. I have spent hours trying to figure it out :(

PLEASE HELP!!!


thank you all :):stickouttounge:
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
So you have a column that has a date................................= Date of Request ( Column " A " )
and a column that has the status of those requests called....= Status ( Column " B " );
( Or is the status column split into two columns ? )
and in that column of "Status" it declares, perhaps with a drop down menu;
" Waiting on Dealer " or " Part is Locked "
Then you want to list elsewhere all the " entries " for each of those...
Are the entries in their own columns...?

If you declare what columns each of these things are in, ( A, B, or C, or etc...) then a formula could be formed...
And where do you want the list put...?
I suppose two lists will be needed...
If in different tabs, then state the names of each tab...
Cell references are needed to make formulas work...
What you ask, can be done...
 
Upvote 0
So you have a column that has a date................................= Date of Request ( Column " A " )
and a column that has the status of those requests called....= Status ( Column " B " );
( Or is the status column split into two columns ? )
and in that column of "Status" it declares, perhaps with a drop down menu;
" Waiting on Dealer " or " Part is Locked "
Then you want to list elsewhere all the " entries " for each of those...
Are the entries in their own columns...?

If you declare what columns each of these things are in, ( A, B, or C, or etc...) then a formula could be formed...
And where do you want the list put...?
I suppose two lists will be needed...
If in different tabs, then state the names of each tab...
Cell references are needed to make formulas work...
What you ask, can be done...











Hello Chris,

thank you so much for the quick response!

The two columns are:

Date of Request is column (F)
Status is column (J) ( this is not split)

The " Entries" are their own rows is ID's within the columns..

I just need to know when the "Date of request(F) for "Locked parts"(J) exceeds 12-25 days from TODAYS (A) date.
As well as : When the "Date of request (F) for "waiting on dealer" (J) exceeds 7-14 days from TODAYS (A) date.

Columns A, B ,C I left open to display the formulas rules

( There are two blank columns (B,C) next to TODAY column.
( The ID column ( D) is a little off center)



[TABLE="width: 1440"]
<tbody>[TR]
[TD]TODAY[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD="align: right"]12/9/2015[/TD]
[TD][/TD]
[TD][/TD]
[TD] ID[/TD]
[TD]Tracking Number[/TD]
[TD]Date of Request[/TD]
[TD]VIN Number[/TD]
[TD]Requestor[/TD]
[TD]Part[/TD]
[TD]Status[/TD]
[/TR]
[TR]
[TD="align: right"]12/9/2015[/TD]
[TD][/TD]
[TD][/TD]
[TD="align: right"]3903[/TD]
[TD][/TD]
[TD="align: right"]9/1/2015[/TD]
[TD] 0K72059[/TD]
[TD]Breakdown[/TD]
[TD]Rear light in the side panel, left[/TD]
[TD]part is locked[/TD]
[/TR]
[TR]
[TD="align: right"]12/9/2015[/TD]
[TD][/TD]
[TD][/TD]
[TD="align: right"]4060[/TD]
[TD][/TD]
[TD="align: right"]9/9/2015[/TD]
[TD] T970116[/TD]
[TD]TC[/TD]
[TD]Turbocharger[/TD]
[TD]Waiting on Dealer[/TD]
[/TR]
[TR]
[TD="align: right"]12/9/2015[/TD]
[TD][/TD]
[TD][/TD]
[TD="align: right"]4488[/TD]
[TD][/TD]
[TD="align: right"]9/28/2015[/TD]
[TD] D153023[/TD]
[TD]Breakdown[/TD]
[TD]Oil Spraying Nozzle[/TD]
[TD]Part is locked[/TD]
[/TR]
[TR]
[TD="align: right"]12/9/2015[/TD]
[TD][/TD]
[TD][/TD]
[TD="align: right"]4490[/TD]
[TD][/TD]
[TD="align: right"]9/28/2015[/TD]
[TD] D153023[/TD]
[TD]Breakdown[/TD]
[TD]Actuator[/TD]
[TD]Part is locked[/TD]
[/TR]
[TR]
[TD="align: right"]12/9/2015[/TD]
[TD][/TD]
[TD][/TD]
[TD="align: right"]4942[/TD]
[TD][/TD]
[TD="align: right"] 10/21/2015[/TD]
[TD] VV92808[/TD]
[TD]Breakdown[/TD]
[TD]Valve collet[/TD]
[TD]Part is locked[/TD]
[/TR]
[TR]
[TD="align: right"][/TD]
[TD][/TD]
[TD][/TD]
[TD="align: right"][/TD]
[TD][/TD]
[TD="align: right"][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
 
Last edited:
Upvote 0
I don't understand why not, but, put this information in each cell;

B2 Is "Waiting on Dealer" between 7 & 14 days from today?

B3 IF($J3="","",IF($J3="Waiting on Dealer",IF(AND($A3>$F3+7,$A3<=$F3+14),"Yes","No"),""))

Then copy B3 down the column...

C2 Is "Locked Parts" between 12 & 25 days from today?

C3 IF($J3="","",IF($J3="part is locked",IF(AND($A3>$F3+12,$A3<=$F3+25),"Yes","No"),""))

Then copy C3 down the column...

I believe this is what you are wanting, if it is close, we can tweak it as needed...

{ B2 & C2 are just labels for the columns, there are no functions within them...}
 
Upvote 0

Forum statistics

Threads
1,223,889
Messages
6,175,226
Members
452,620
Latest member
dsubash

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