Forum Discussion
GregorySD
Oct 19, 2023Copper Contributor
Unique Count of Filtered Excel Workbook
Hi I hope that someone out there can assist me. I have a commercial invoice in excel for some of our clients, which is filterable by area. The problem I am sitting with is that I need to give t...
- Oct 19, 2023
You can use this complicated formula:
=SUM(IF(FREQUENCY(IF(SUBTOTAL(3,OFFSET(A9,ROW(A9:A385)-ROW(A9),,1)), IF(A9:A385>"",MATCH("~"&A9:A385,A9:A385&"",0))),ROW(A9:A385)-ROW(A9)+1),1))
A9:A385 is the range in which you want to count unique values, and A9 is the first cell in this range.
Lorenzo
Oct 19, 2023Silver Contributor
Clicking your link I get a blank page only... So attached is a sample:
Data formated as Table named Table1. Not mandatory, you can update the below OFFSET with your actual Range:
=COUNTA(
UNIQUE(
FILTER(Table1[Item],SUBTOTAL(3,OFFSET(Table1[Property],ROW(Table1)-ROW(Table1[#Headers])-1,,1)))
)
)