Counting only visible entries in a filtered table

Chalklands

New Member
Joined
May 17, 2018
Messages
13
Hello,
I have a formula that calculates Deals 'Won'' as a % of Total Deals ('Won'+'Lost').

=IFERROR((COUNTIF(Tbl_Deals_1[Status],"WON")/SUM(COUNTIF(Tbl_Deals_1[Status],"WON"),COUNTIF(Tbl_Deals_1[Status],"LOST"))),"")

<tbody>
</tbody>

It works fine, but I want it to only calculate for visible rows in a filtered table (ignoring hidden rows). Can anybody help me with this please?

Thanks

Pete
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
Try

=IFERROR(SUMPRODUCT(--SUBTOTAL(3,OFFSET(Tbl_Deals_1[Name],ROW(Tbl_Deals_1[Name])-MIN(ROW(Tbl_Deals_1[Name])),0,1)),--(Tbl_Deals_1[Status]="WON"))/(SUMPRODUCT(--SUBTOTAL(3,OFFSET(Tbl_Deals_1[Name],ROW(Tbl_Deals_1[Name])-MIN(ROW(Tbl_Deals_1[Name])),0,1)),--(Tbl_Deals_1[Status]="WON"))+SUMPRODUCT(--SUBTOTAL(3,OFFSET(Tbl_Deals_1[Name],ROW(Tbl_Deals_1[Name])-MIN(ROW(Tbl_Deals_1[Name])),0,1)),--(Tbl_Deals_1[Status]="LOST"))),"")

M.
 
Upvote 0
Sorry, i used the column name of my test table.
Disregard the formula above

Try
=IFERROR(SUMPRODUCT(--SUBTOTAL(3,OFFSET(Tbl_Deals_1[Status],ROW(Tbl_Deals_1[Name])-MIN(ROW(Tbl_Deals_1[Status])),0,1)),--(Tbl_Deals_1[Status]="WON"))/(SUMPRODUCT(--SUBTOTAL(3,OFFSET(Tbl_Deals_1[Status],ROW(Tbl_Deals_1[Status])-MIN(ROW(Tbl_Deals_1[Status])),0,1)),--(Tbl_Deals_1[Status]="WON"))+SUMPRODUCT(--SUBTOTAL(3,OFFSET(Tbl_Deals_1[Status],ROW(Tbl_Deals_1[Status])-MIN(ROW(Tbl_Deals_1[Status])),0,1)),--(Tbl_Deals_1[Status]="LOST"))),"")

M.
 
Upvote 0
OMG correction

=IFERROR(SUMPRODUCT(--SUBTOTAL(3,OFFSET(Tbl_Deals_1[Status],ROW(Tbl_Deals_1[Status])-MIN(ROW(Tbl_Deals_1[Status])),0,1)),--(Tbl_Deals_1[Status]="WON"))/(SUMPRODUCT(--SUBTOTAL(3,OFFSET(Tbl_Deals_1[Status],ROW(Tbl_Deals_1[Status])-MIN(ROW(Tbl_Deals_1[Status])),0,1)),--(Tbl_Deals_1[Status]="WON"))+SUMPRODUCT(--SUBTOTAL(3,OFFSET(Tbl_Deals_1[Status],ROW(Tbl_Deals_1[Status])-MIN(ROW(Tbl_Deals_1[Status])),0,1)),--(Tbl_Deals_1[Status]="LOST"))),"")
 
Upvote 0
OMG correction

=IFERROR(SUMPRODUCT(--SUBTOTAL(3,OFFSET(Tbl_Deals_1[Status],ROW(Tbl_Deals_1[Status])-MIN(ROW(Tbl_Deals_1[Status])),0,1)),--(Tbl_Deals_1[Status]="WON"))/(SUMPRODUCT(--SUBTOTAL(3,OFFSET(Tbl_Deals_1[Status],ROW(Tbl_Deals_1[Status])-MIN(ROW(Tbl_Deals_1[Status])),0,1)),--(Tbl_Deals_1[Status]="WON"))+SUMPRODUCT(--SUBTOTAL(3,OFFSET(Tbl_Deals_1[Status],ROW(Tbl_Deals_1[Status])-MIN(ROW(Tbl_Deals_1[Status])),0,1)),--(Tbl_Deals_1[Status]="LOST"))),"")

How would I add another criteria to the formula? I have a column called 'Stage' that has either ' Meeting with customer' or 'Tested with Customer' as the available options. I'm trying to calculate the percentage of deals that are lost at the 'Meeting' stage and the 'Tested' stage?
 
Upvote 0
To use an OR condition you should add the two conditions. Try something like
--((Tbl_Deals_1[Stage]="Meeting with customer")+(Tbl_Deals_1[Stage]="Tested with Customer"))

M.
 
Upvote 0
To use an OR condition you should add the two conditions. Try something like
--((Tbl_Deals_1[Stage]="Meeting with customer")+(Tbl_Deals_1[Stage]="Tested with Customer"))

M.

Thanks for all your help Marcelo. I actually managed to work it out myself by reading the link to 'exceljet' you sent earlier.
 
Upvote 0

Forum statistics

Threads
1,215,148
Messages
6,123,301
Members
449,095
Latest member
Chestertim

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