CountIF with Rolling Months

nburaq

Board Regular
Joined
Apr 2, 2021
Messages
222
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
Hi,
I have a data shown below, my aim is to count the data with condition last 12 rolling months. Here is the simple data

DatumLocation1
Jan/2243,70
Feb/222,24
Mar/2228,96
Apr/2225,57
May/2241,19
Jun/2237,42
Jul/2241,88
Aug/2237,37
Sep/2239,31
Oct/2238,79
Nov/2237,91
Dec/2240,40
Jan/2374,69
Feb/2359,99
Mar/2360,69
Apr/2360,69
May/2352,00
Jun/23
Jul/23
Aug/23
Sep/23
Oct/23
Nov/23
Dec/23

Normally I achieve this with COUNTIF(Range; ">30") but I dont know how can I achieve this with rolling months.
Thanks for your help !
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
How about
Fluff.xlsm
ABCD
1DatumLocation1
2Jan-2243.712
3Feb-222.24
4Mar-2228.96
5Apr-2225.57
6May-2241.19
7Jun-2237.42
8Jul-2241.88
9Aug-2237.37
10Sep-2239.31
11Oct-2238.79
12Nov-2237.91
13Dec-2240.4
14Jan-2374.69
15Feb-2359.99
16Mar-2360.69
17Apr-2360.69
18May-2352
19Jun-23
20Jul-23
21Aug-23
22Sep-23
23Oct-23
24Nov-23
25Dec-23
Master
Cell Formulas
RangeFormula
D2D2=SUM(IF(TAKE(FILTER(B2:B25,B2:B25<>""),-12)>30,1,0))
 
Upvote 1
Solution
You're welcome & thanks for the feedback.
 
Upvote 0
Regarding this formula, can I use this part =TAKE(FILTER(B2:B25,B2:B25<>""),-12)>30 for conditional formatting?
 
Upvote 0
Yes, but it will probably not do what you want.
 
Upvote 0
Yes, but it will probably not do what you want.
Tried and approved :) I wanted to highlight those values but I assume it will require a new topic. Thanks again for all your help
 
Upvote 0

Forum statistics

Threads
1,215,941
Messages
6,127,785
Members
449,407
Latest member
KLL_VA

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