Count by Color and Date

d_tech

New Member
Joined
Jul 19, 2017
Messages
12
Office Version
  1. 2016
Platform
  1. Windows
To illustrate the formulas I need I've attached an example of what they should return. Dates are entered into column A. Then the cells get colored grey once they are processed. B2 is supposed to show how many cells are in column A that have a date in them but are not colored. C2 is supposed to show how many cells are in column A that have a recent date (last 3 months or 90 days, doesn't really matter) that are colored in grey.

If someone would help me out that would be appreciated, Thanks!
 

Attachments

  • illustration.png
    illustration.png
    32.6 KB · Views: 24

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Ok I've added `=GET.CELL(38,Clients!$A3)` to the name manager in formulas. So then entering the formula by its name `=NumColor` into the B column gives it a value above zero, except line 7 and down remains 0 since there's no background color.

So this part I have down. Now what is the formula to utilize it in B3 and C3 as explained in previous post?
 
Upvote 0
Figured it out by now. Note I wrote B3 and C3 but I meant line 2 as in first post.
B2 is `
Excel Formula:
=COUNTIFS(A:A,"<"&TODAY(),B:B,0)
C2 is `
Excel Formula:
=COUNTIFS(A:A,">"&TODAY()-90,B:B,">0")
 
Last edited by a moderator:
Upvote 0
Solution

Forum statistics

Threads
1,214,547
Messages
6,120,139
Members
448,948
Latest member
spamiki

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