im sitting on this question: what proportion of suppliers are from germany? i have to solve the question using a formula on google sheets
i have a spreadsheet with the suppliers here:https://docs.google.com/spreadsheets/d/1nlDE2zxg1L9u6I2BE1wqo5_bPUqChiY1N1qogtIlXS0/edit?usp=sharing
my idea was to enter the formula: =PERCENTIF(I2:I30,"Germany") but i get an error. Could someone tell me what im doing wrong?
Thank you!
Try
=PERCENTIF(I2:I30;"Germany")
and see if that works?
Related
I am wondering if someone with Google Sheets expertise can help me figure out how to write a formula to find percentages based on 2 parameters.
For Example, please see screenshot below, we want to figure out what percentage of the cost is included(Y/N) within each fruit (oranges/apples). What would be the best formula to solution for this?
Thank you!
Thanks in advance!
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
I was wondering how to sort data in google sheets by how many letters it contains. Could someone help me with this? Please explain clearly as I am new to google sheets.
Thanks.
use:
=INDEX(SORT(A2:A; LEN(A2:A); 1))
or 0 instead of 1 for reverse ordering
I have a question about a google sheet formula?
=SUM(COUNTIF('Signed Case'!C:C,{"Barry","Maya"}))
It seems that Google Sheet can only count the total number of "Barry" but NOT BOTH "Barry" and "Maya", is there a way to fix this?
Greatly appreciated, thanks and have a nice day!
Change as
=sum(ARRAYFORMULA(COUNTIF('Signed Case'!C:C,{"Barry","Maya"})))
ARRAYFORMULA will develop countif for all criteria
here is a link to my google sheet for reference: [https://docs.google.com/spreadsheets/d/1tUlqB2tsH4xEsxYiMv1CiUIY3hhLGpM-1G8eWOyZPWk/edit?usp=sharing]
What I am trying to do is in the "Clients" sheet there is the column "Orders". Here I want a count of all the times that "Client ID" has been used across all the other pages. Any tips on what formula to use? Thanks
I would use:
={"Orders";ArrayFormula(IF(A2:A="","",COUNTIF({Jun!B:B;July!B:B;August!B:B;Sept!B:B}, A2:A)))}
from what i saw you only needed to add the ARRAYFORMULA to your formula, it should end up like this: =ArrayFormula(COUNTIF({Jun!B:B;July!B:B;August!B:B;Sept!B:B},A2)).
But, even after adding it, to me at least, the results didn't change. Could you verify and make sure there's a problem with the results the SUMIFS is giving you?
If you find anything that's broken I'll try and help.