Forum Discussion
Count values with max date in filtered excel table
- Mar 14, 2021
Hi Zdenec,
Filtered rows - in Excel there are two functions which could ignore hided rows or columns - SUBTOTAL() and AGGREGATE(). To check if row is hided you need to use one of these functions. There are few variants, here we use AGGREGATE() within helper column.
Empty cell counting - sorry, I didn't think about that. If array is empty FILTER by default returns an error, and COUNTA doesn't care that's error or not, counts it as any other value. We may use third parameters in FILTER which will be returned in case of empty array, check if it is returned and take zero as final result, otherwise count number of values in returned array. Resulting formula
=LET( visible, FILTER( T_Data[Name], T_Data[Helper],-1), IF(INDEX(visible,1)<> -1, COUNTA(UNIQUE( visible)), 0) )
I assume you are on Excel 365. With that
I'd add Helper column to the table with formula
=IF([@[Test date]]="",99999,[@[Test date]])*AGGREGATE(3,5,[@Name])
It returns zero for hided by filter rows, 99999 if date is missed and Test date otherwise.
When number of employees
=COUNTA(UNIQUE( FILTER( T_Data[Name], T_Data[Helper])))
and number of positive employees
=SUM(
(MAXIFS(T_Data[Helper],T_Data[Name],T_Data[Name],T_Data[Helper],">0") =
IF(T_Data[Helper],T_Data[Helper],-1 ))*
(T_Data[Test Result]="positive")
)
Same for negative and not tested
- Zdenek_MoravecMar 11, 2021Brass ContributorHello Sergei
Thank You very much, it really works.
May I ask You to explain MAXIFS "criteria range=name, criteria=name"
And IF helper, then helper, else =-1
Thank You
Zdenek- SergeiBaklanMar 12, 2021Diamond Contributor
Hi Zdenek,
Let assume we filtered the table on ACC
and let split our formula on parts
Here
=MAXIFS(T_Data[Helper],T_Data[Name],T_Data[Name])
returns max date from helper against each name in the table. For hided rows helper is zero, otherwise max of available dates for the name in row. Without that we will have only one max value for all names.
Next is helper column which we would like to compare with previous result and return 1 if dates are equal (i.e. date in helper is equal to max date for the name), otherwise zero.
But if simply compare these two arrays all hided rows also return 1 (0=0), thus we use IF() to change helper for hided rows on -1.
In addition, the part T_Data[Name],T_Data[Helper],">0" in formula is not needed, it is from my initial variant and I forgot to remove. Finally formula could be
=SUM( (MAXIFS(T_Data[Helper],T_Data[Name],T_Data[Name]) = IF(T_Data[Helper],T_Data[Helper],-1 ))* (T_Data[Test Result]="positive") )
- Zdenek_MoravecMar 13, 2021Brass Contributor
Hello SergeiBaklan
I have reached my Excel limit, I cannot get this mega formula. One new thing for me is, that a reference to a table returns 0 for the filtered rows. The rest I must probably repeat more and more times in a free time.
Anyway, the formulas add up the max's of filtered table perfectly and I have implemented it.
Last thing - I need to count the total number of positive and negative tests.
I tried to COUNTA FILTERed list with the criteria:
=COUNTA(FILTER(T_Data[Test Result];(T_Data[Helper])*(T_Data[Test Result]="positive")))
The problem is, when FILTER returns empty array, the result of COUNTA is 1, not 0 or error (see attachment)
Is there a solution with the new dynamic formulas or I must use the old formula from google?
Thank You very much
Zdenek Moravec