Mastering Data Visualization: Crafting Tally Graphs Easily Using Excel
Mastering Data Visualization: Crafting Tally Graphs Easily Using Excel
Quick Links
- Create the Tally system
- Total the Groups of Five
- Total the Leftover Singles
- Make the Tally Graph with a Formula
- Hide the Helper Columns
A tally graph is a table of tally marks to present the frequency in which something occurred. Microsoft Excel has a large number of built-in chart types available, but it does not have a tally graph option. Fortunately, this can be created using Excel formulas.
For this example, we want to create a tally graph to visualize the votes received by each person on a list.
Create the Tally system
A tally graph is normally presented as four lines followed by a diagonal strikethrough line for the fifth tally. This provides a nice visual grouping.
It is difficult to replicate this in Excel, so instead, we will group the values by using four pipe symbols and then a hyphen. The pipe symbol is the vertical line above the backslash character on the U.S. or U.K. keyboard.
So, each group of five will be shown as:
||||-
And then a single pipe symbol for a single occurrence (1) will appear as:
|
Type these symbols into cells D1 and E1 on the spreadsheet.
We will create the tally graph using formulas and reference these two cells to display the correct tally marks.
Total the Groups of Five
To total the groups of five, we will round the votes value down to the nearest multiple of five and then divide the result by five. We can use the function named FLOOR.MATH to round the value.
In cell D3, enter the following formula:
=FLOOR.MATH(C3,5)/5
This rounds the value in C3 (23) down to the nearest multiple of 5 (20) and then divides that result by 5, giving the answer 4.
Total the Leftover Singles
We now need to calculate what is left over after the groups of five. For this, we can use the MOD function. This function returns the remainder after two numbers are divided.
In cell E3, enter the following formula:
=MOD(C3,5)
Make the Tally Graph with a Formula
We now know the number of groups of five and also the number of singles to display in the tally graph. We just need to combine them into one row of tally marks.
To do this, we will use the REPT function to repeat the occurrences of each character the required number of times, and concatenate them.
In cell F3, enter the following formula:
=REPT($D$1,D3)&REPT($E$1,E3)
The REPT function repeats text a specified number of times. We used the function to repeat the tally characters the number of times specified by the groups and singles formulas. We also used the ampersand (&) to concatenate them together.
Hide the Helper Columns
To finish the tally graph, we will hide the helper columns D and E.
Select columns D and E, right-click, and then choose “Hide.”
Our completed tally graph provides a nice visual presentation of the number of votes each person received.
Also read:
- 2024 Approved A Deep Dive Into YouTube's Latest Monetization Policy
- A Complete Walkthrough for GPT-3's Beta Features
- Beginner's Guide to Masterful Marketing with Reddit Insights
- Comprehensive Tutorial for Installing Latest ATI Radeon Drivers in Microsoft Windows
- Download the Newest Drivers for NVIDIA GeForce RTX 2N60 Graphics Card on Various Windows Versions
- HP Scanjet Drivers Upgraded: Download Compatible with Windows Operating Systems
- In 2024, How to Watch Hulu Outside US On Motorola Edge 40 | Dr.fone
- Jujutsu Kaisen in Action Making Memorable TikTok Videos
- Pro Video Cutting Apps in Windows 11 Lineup
- Step-by-Step Guide: Updating Your Audio-Technica Speaker System's Driver Software
- Update or Download Free Killer Wi-Fi Drivers on Windows 11, 8 & 7: Get Enhanced Connectivity Today!
- Visualizing Conversations: Facebook Avatars in WhatsApp Use Ceiling: 150 Characters
- Title: Mastering Data Visualization: Crafting Tally Graphs Easily Using Excel
- Author: Charles
- Created at : 2024-12-05 09:11:39
- Updated at : 2024-12-06 04:16:11
- Link: https://win-amazing.techidaily.com/mastering-data-visualization-crafting-tally-graphs-easily-using-excel/
- License: This work is licensed under CC BY-NC-SA 4.0.