Skip to content

Commit

Permalink
Update 2023-11-05-excel.markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
TripleYei authored Dec 1, 2023
1 parent e6daa2a commit ebc0515
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions _posts/2023-11-05-excel.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -442,3 +442,61 @@ What would =MATCH(10, B1:B5, 1) return?
~~~~
3
~~~~
The AVERAGE functions returns the average of a group of cells. To get the average number of electoral votes among the top 6 states, type =AVERAGE(B2:B7)
~~~~
=AVERAGE(B2:B7)
~~~~
Use AVERAGE to find the average number of DEMOCRATIC Congressional Seats for the top 6 states
~~~~
=AVERAGE(C2:C7)
~~~~
Use AVERAGE to find the average number of REPUBLICAN Congressional Seats for the top 6 states
~~~~
=AVERAGE(D2:D7)
~~~~
Use AVERAGE to find the average number of electoral votes for the top 4 states
~~~~
=AVERAGE(B2:B5)
~~~~
Use AVERAGE to find the average number of Republican congressional seats for the top 3 states
~~~~
=AVERAGE(D2:D4)
~~~~
What would =AVERAGE(D2) return?
~~~~
6
~~~~
What would =AVERAGE(1, 1, 1, 1, 1, 1, 1) return?
~~~~
1
~~~~
What would =AVERAGE(50, 100, 150) return?
~~~~
100
~~~~
Use AVERAGE to find the average number of electoral votes for Texas, Florida, and Pennsylvania
~~~~
=AVERAGE(B3,B5,B7)
~~~~

0 comments on commit ebc0515

Please sign in to comment.