From given table i want to count number of text "Yes" from Result column where numeric value is 25 or 35 from number column. I want to use subtotal here as i have to filer data on groups.
Subtotal with countifs in different columns
1k Views Asked by Rajiv At
1
There are 1 best solutions below
Related Questions in EXCEL
- Power Query / M Code, extract a list of tables into one main table, some column headers same but some different and in different order (and in row 2)
- Is there a way to validate the cell format (from excel) to fetch the symbol from it (in Java)?
- Excel - Visual Basic, macro with autofill "1"
- Getting Run-time error '13': Type Mismatch using .Find
- Getting website metadata (Excel VBA/Python)
- Excel Code Editor doesn't work (blank window)
- How to find out how many of each 2, 3 and 4 required to fit in 100 using excel?
- How would I apply a rather complex summation formula like this in Excel?
- Removing a Button from Customized Excel Ribbon
- Excel - Update Item Description Based on Accessories Ordered with It
- select duplicates from data based on another column
- How to use VBA to bold just some text
- VBA Code to filter and get values from csv to excel worksheet
- Look up max alpha numeric value
- Azure Batch for Excel VBA
Related Questions in MULTIPLE-COLUMNS
- Span figure across columns in Quarto docx output
- How can I turn categories into columns with percentage results?
- R split one column into multiple
- R interprets points and comma's as column separators, despite specifying 'sep=","' and 'quote = ""'
- Is there a way to show columns side by side on desktop and one below the other on mobile with CSS and HTML?
- Reorder columns (xcols) by index KDB+/Q
- Summing across multiple tables and location of subquery
- Multiple counts in different colums
- How do I transpose every line in a row to multiple columns?
- separate only specific columns into multiple across a table
- Tidy dataset with multiple items in a value in R
- Find the name of the maximum value by row by range of columns in R
- Splitting mutliple columns of table extracted from pdf into multiple columns
- PostgreSQL: How to Enter/Update data in a column for each unique customer and increment it by 1 until the end of Table
- Any way to make CSS flex flow downward while having multiple columns?
Related Questions in COUNTIF
- Have ISODD(SUMPRODUCT(1/COUNTIF ignore all blank cells
- what is the formula for excel when cell value changing from 0 to 1, the calculation formula in next cell will start
- How to consider only the elements <>0 of the month of January (in Excel)
- R function to sum/count consecutives values - Rainfall indices
- Count and group equal values in the same cell in Google Sheets
- Count Ifs - M language or Power Query - Power BI
- How to count distinct instances of two columns when one column is a date
- Power Query "COUNTIFS" takes long time to load for large data
- How to create a Sequence number based on Sales Agent name and sale date in excel using formula
- Applying a COUNTIF to a COUNTUNIQUEIFS using variable Date Ranges
- Excel #VALUE error with COUNTIF inside LET function when using FILTER
- Complicated COUNTIFS formula with unique values: Part 2
- COUNTIF for specific rows across dynamic number of Excel sheets
- COUNTIF within FILTER in Google Sheets formula
- Countif in R programming
Related Questions in SUBTOTAL
- Excel subtotal where the reference only shown once
- Calculate the average of a filtered list/column with a condition (libre office calc)
- Remove Sub Totals from Power BI Version 2.11
- Subtotal SUM does not work properly when more than 24 hours
- Pandas pivot table subtotals
- DAX Subtotal PowerBI
- How to get the number of records that match all conditions in a filtered, external worksheet?
- How do i add a column of totals only if the "Name" variable is the same
- Subtotal in Excel by Python
- How to add SUBTOTAL to SUMPRODUCT with division formular in Excel?
- Power BI average of averages of averages DAX measure
- Adding subtotals to pivot_table using groupby
- I want to create a running subtotal based on the quantity added of different food items. What am I missing?
- Calculate subtotal with special condition
- Subtotal with countifs in different columns
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?

I see the issue. Without making a too complicated formula try this: i. Add a new column (column D) with the following formula: "=+IF(AND(B2="Yes",OR(C2=25,C3=30)),"True","False")" -> This will create a column that shows the value TRUE if you have a "Yes" in Result column and 25 or 30 in Number column. ii. To get the SUBTOTAL of your search, add the following formula in the cell that needs to show the counted number: =SUMPRODUCT(SUBTOTAL(3,OFFSET(D2:D13,ROW(D2:D13)-ROW(D2),0,1)),--(D2:D13="TRUE")).
These two steps together will solve your issue