I apologize in advance, when it comes to things like formulas, I have very little knowledge.
I have attempted to refine my formula for many hours with ChatGPT with no luck so far.
I had previously asked a question here & was able to find a solution to my formula.
This is the current working formula that a kind member provided to me in my previous question:
=sumproduct(('Online Arbitrage'!$A$10:$A=D8)*('Online Arbitrage'!$M$10:$M>=DATE(A5,1,1))*('Online Arbitrage'!$M$10:$M<=DATE(A5,12,31))*('Online Arbitrage'!$N$10:$N>0)*'Online Arbitrage'!$H$10:$H*'Online Arbitrage'!$N$10:$N)
I have an additional column that I would like to pull similar data for but with one additional criteria:
('Online Arbitrage'!$U$10:$U="Exempt")
My hope is that it will calculate all of the same data from the previous formula but only pull through the items with the "Exempt" label in column U (for total tax exempt purchase).
I have attempted to add this additional criteria all over the working formula with no success.
Does anyone know how I can add this additional criteria into this formula?
Thanks!
Try:
=sumproduct(('Online Arbitrage'!$A$10:$A=D8)*('Online Arbitrage'!$M$10:$M>=DATE(A5,1,1))*('Online Arbitrage'!$M$10:$M<=DATE(A5,12,31))*('Online Arbitrage'!$N$10:$N>0)*'Online Arbitrage'!$H$10:$H*'Online Arbitrage'!$N$10:$N*('Online Arbitrage'!$U$10:$U="Exempt"))
Related
im am still doing my google sheets test and need help finding the answer to the question: what proportion of products are discontinued. i have to express my answer in a formula on google sheets
you can find the link to the data stack here:
products list:
https://docs.google.com/spreadsheets/d/1m67VmLZispyTwFTmPdppsdJNtbvnZsZK2LBCSchUWmU/edit?usp=sharing
my idea was to count the 0 in the column J(discontinued) with the formula: =Countif(J2:J78,"0"). in the next step i would have to show a proportionality and i have no clue how i am supposed to do that. could anyone tell me if the first step is correct and how i should go about the proportionality?
thank you!!
You can also use the formula PERCENTIF:
Returns the percentage of a range that meets a condition.
PERCENTIF(range, criterion)
In this case if you want to know the percentage of 0 this would be:
=PERCENTIF(J2:J78;"0")
You do not need any formula, just build a pivot table
Can the following formula be simplified as described in the paragraph below it?
=(ABS(D$3-D5)+ABS(E$3-E5)+ABS(F$3-F5)+ABS(G$3-G5)+ABS(H$3-H5)+ABS(I$3-I5)+ABS(J$3-J5)+ABS(K$3-K5))/-1
The problem is that I don't know how many columns I'm going to end up with, and I certainly don't want to continue manually writing each column into the formula. Is there I way to simplify this formula so that every column in a row is calculated?
I've been trying various formulas to no avail, and I can't get usable results via Google searches. I suppose I don't know how to effectively word the question without writing a paragraph.
Thanks, in advance!
Try this one:
=-SUM(ARRAYFORMULA(ABS(D$3:$3 - D5:5)))
GOT IT:
=ArrayFormula(SUM(ABS(D$3:$3-D5:5))/-1)
I'm trying to use =GetPivotData formula to dynamically pull specific sum totals (40% & 80% Sell-Out Probability in my example) into a table. I may not fully understand how to use the formula, but everything I've tried has returned an error.
Sample Sheet
This formula seems to pull the answer you want, if I understand your question.
=GETPIVOTDATA("SUM of Sales",H2,"Sell-Out Probability","40%")
This would go in N8 of your sample sheet.
N9 would have the same formula, but with "80%" as the last value.
Let me know if this helps.
I'm trying to make the following formula a bit less redundant, as it may grow out of proportion with some of the modifications i'm looking to perform.
Any advice would be appreciated.
=minus(SUMIFS(A$2:$A,C$2:$C,K$3)-sumifs(A$2:$A,C$2:$C,K$2),SUMIFS(A$2:$A,C$2:$C,K$5)-sumifs(A$2:$A,C$2:$C,K$4))
Please see the worksheet
Try this standard formula:
=SUMPRODUCT($A$2:$A$1000,($B$2:$B$1000=$C$3)+($B$2:$B$1000=$C$4))
-SUMPRODUCT($A$2:$A$1000,($B$2:$B$1000=$C$2)+($B$2:$B$1000=$C$5))
Basically groups the result of the criteria to be added and the ones to be subtracted
I have a spreadsheet that has summary information for individuals by month, and I want to sum the information for all participants, but I need to break it down conditionally by year. The big issue is that the information is not all stacked on top of each other in two columns(month & info), they are broken up by person with titles in between, so I have to use multiple ranges.
For example, my code now looks something like this:
=sumif([A2:A6,A9:A17,A19:A25], "<13", [D2:D6,D9:D17,D19:D25])
Except I am doing this with hundreds of ranges. The brackets are not working and I am not sure how to use an Array. I would really appreciate someones help on this, as I have been racking my brain for awhile now.
Maybe:
=sumif(A:A,"<13",D:D)
or, if there are values in row26 or below and in row1 to be excluded:
=sumif(A2:A25,"<13",D2:D25)
If I got you right, the following would work:
=sum(filter(D2:D25,ISNUMBER(A2:A25),A2:A25 >13))
The idea:
Filter for rows that are numeric (you said the content in between are titles!?) and meet your requirement (>13).
Sum it up! (By the right column)