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
Related
I have a number "1,015,788" i want this number to be displayed as 10.15L. How can i do this in google spreadsheet?
Thanks in advance
To change the formatting of the number to what you've described, use the following formula.
=TEXT(TRUNC(1015788/100000,2),"#.##L")
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 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?
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