A
A
Andrey Gusev2021-05-11 12:40:44
Google Sheets
Andrey Gusev, 2021-05-11 12:40:44

How to show percentage in google spreadsheets?

You need to see what percentage of answers are in the range. Example:
Vasya - 10
Misha - 10
Sasha - 8
Andrey - 7
Arseniy - 6
Maxim - 10
Olya - 3
and so on...
Find out:
How much% from 9 to 10
How much% from 7 to 8
how much% from 0 to 6

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Alexander Ivanov, 2021-05-12
@oshliaer

This is called the frequency of occurrence of a value in a range across groups.
You need to build a list of categories or sections to which you will attribute certain data. It can be both strings and numbers. Because there is no special meaning in numbers (we count quantities), then you can immediately make signature lines
609b57c48469c980981789.png

=INDEX(
  IFS(
    B2:B8<=6,"0 ... 6",
    B2:B8<=8,"7 ... 8",
    B2:B8<=10,"9 ... 10"
  )
)

Next, you can build the distribution of the number of occurrences of these categories in the range in percent
609b5875c66ca201543552.png
={
  UNIQUE(C2:C8),
  INDEX(
    COUNTIFS(C2:C8,UNIQUE(C2:C8))/
      COUNTA(C2:C8)
  )
}

Or you can use PivotTables
609b598a255c2703312268.png
Example in Table .

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question