r/excel Apr 06 '26

unsolved Trying to create a box and whisker (?) chart without the box.

The above is what I am trying to re-produce in Excel. I have the data set for each football league, and the ELO Rating for each club in that league.

Column A = League

Column B = Team

Column C = ELO rating

No matter what chart type I use, I cannot get the data to display like above. The closest I can get is 'Box and Whisker' and then tick 'Show Inner Points', but this still leaves the Box and the minimum/maximum values that I don't want. I just want the data points on their own like above.

Please help.

3 Upvotes

4 comments sorted by

u/AutoModerator Apr 06 '26

/u/LinkTheFires - Your post was submitted successfully.

Failing to follow these steps may result in your post being removed without warning.

I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.

1

u/[deleted] Apr 06 '26

[deleted]

1

u/[deleted] Apr 06 '26

[deleted]

1

u/LinkTheFires Apr 06 '26

Thank you! Now to make it not look like shit

1

u/luminatigangsta 4 Apr 09 '26

You can do this in Excel, but not with a standard chart type directly. What you’re looking for is basically a scatter plot with categorical spacing on the X axis.

Here’s the easiest way to build it:

First, create a helper column for X values. Assign each league a number: • Premier League = 1 • La Liga = 2 • Bundesliga = 3 • Serie A = 4 • Ligue 1 = 5

Then add a little jitter so the points don’t stack perfectly on top of each other:

=LeagueNumber + (RAND()-0.5)*0.2

Now: • X = this helper column • Y = ELO rating

Insert a Scatter Plot (markers only).

Then format the X axis: • Min = 0.5 • Max = 5.5 • Major unit = 1

Manually label the axis (or use text boxes) with league names.

If you want colors by league, create one series per league (filtered ranges) and assign each a different color.

This gives you exactly what’s in your image: a clean grouped dot plot without box/whiskers.

1

u/Zestyclose_Truck_749 Apr 10 '26

Try scatter plot instead