Using SUMIFS to return the sum of group Items values [closed] - excel-formula

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed yesterday.
Improve this question
how to return the sum of quantities of a particular group of items from overall group of items Using SUMIFS formula. I want the group of related items as the criteria from the overall items (the criteria range). Any assistance will be highly appreciated.
Regards
I tried to select the range of the related items as the criteria but excel returns the sum of quantities of a single item

Related

Power BI & Excel query - Taking values from adjacent column along a row element [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 months ago.
Improve this question
[Table]Food Choice Table
I want to take the values from the column and insert on the choice. Can anyone suggest how can this be done in excel and power BI.
E.G this is how this should look like.
Food Choice Table
In Excel, a "nested if" isn't elegant but it will work for your case. Assuming Menu is in the B column, Toffee is in the D column, Coffee is in the E column, and Chinese is in the F column here is the formula for your Choice column starting on row 2.
=IF(B2="Toffee",D2,IF(B2="Coffee",E2,IF(B2="Chinese",F2,"Not Found")))

Excel formula which calculates non-missing values from rows [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
So I have an excel spreadsheet and my company is building an app that will use data from this spreadsheet. I need to send over some trial data but the excel is about 5000 rows long.
My managers said to pick values from the columns that have the most values entered (least blank or "empty" cells). Obviously, that is very tedious to check by hand given my file.
What would be a formula I can use to identify how many non blank cells there are by row, then I could do a descending sort to pick the entries I want for my trial?
For the first row, something like:
=SUMPRODUCT(--(1:1<>""))
This will not count empties or cells containing formulas returning blank.

Excel VBA: Custom Function that finds the cumulative sum values in a Column based on Cumulative Value [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
Hi,
I just started with Excel VBA and I'm working on a little project with cumulative data. The data in column1 i.e. A is static. I'm looking for a way to find the cumulative value (Output as Column B and E) based on the value of i using VBA.
How can I translate this operation to VBA?
Please Help.
You can do this with formulas assuming your value for i is stored somewhere on the sheet
=SUM(OFFSET(E2,0,0,$B$1 + 1,1))
Where B1 = i and Column E is the range to sum

How do I count the number of times a row contains two specific words [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 4 years ago.
Improve this question
I am trying to put together a sales spreadsheet for my boss that counts how many times a specific sales rep has closed a deal. One column would have a sales rep name, and another column would have the status of the customer.
So what I want is a total of how many times columns D (Sales Rep) and E (Status) contain both Condie and Closed.
I know you can use Len to count words, but I only want to count them if both D and E contain the necessary data.
If you are using Excel 2007+ use COUNTIFS
To get the count of "Closed" sales made by a sales rep, write the formula below in the cells of a new column, and then sum such new column.
=IF(AND(D2=salesRep,E2="Closed"),1,0)
The above assumes that you insert the name of the sale rep in a cell called: salesRep

how to populate Bottom quota from a stack in excel [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
Need help in populating a list of bottom performers who are below 25 percentile
of the over all list. I have the names of employees in one column and their scores in the adjacent column . i have the value of 25th percentile of the scores.
how can i populate the names of the people in the different sheet who the below the 25th percentile mark.
Let's say our Employee names are in the named range EmpName, and their scores are in the named range EmpScore. The formula you could enter in the first row of the next sheet would be:
=IF(SMALL(EmpScore,ROW(A1))<QUARTILE(EmpScore,1),INDEX(EmpName,MATCH(SMALL(EmpScore,ROW(A1)),EmpScore,0)),"")
Then copy it down (which will increase only the ROW(A1), selecting the next in the list) far enough to get everybody (extra's will be listed as blank entries). This will also put them in order of lowest to highest.

Resources