Create a Progress Bar in Excel Using REPT Formula β No Charts Needed!
Want to add visual flair to your Excel dashboards without using complex charts? In this tip, you'll learn how to create a sleek, text-based progress bar using nothing but a simple formula.
This trick is especially useful when tracking progress percentages across tasks, projects, or goals in a clean, minimalist way.
π‘ No VBA. No add-ins. Just a smart use of the
REPT
function.
π§ The Formula
=REPT("β", ROUND(L11*10, 0)) & REPT("β", 10 - ROUND(L11*10, 0))
This formula creates a 10-character progress bar by repeating:
-
Filled circles (β) to show progress
-
Empty circles (β) to show remaining steps
π How It Works
Letβs break it down:
β
REPT("β", ROUND(L11*10, 0))
-
L11
holds your percentage value (e.g.,0.75
for 75%) -
Multiply by 10 to scale it for 10 segments β
0.75 * 10 = 7.5
-
Round to the nearest whole number β
ROUND(7.5, 0) = 8
-
Repeat the symbol β 8 times β
ββββββββ
β
REPT("β", 10 - ROUND(L11*10, 0))
-
Subtract from 10 β
10 - 8 = 2
-
Repeat the symbol β 2 times β
ββ
β Final Output:
ββββββββββ
This visualizes that your project is 80% complete in an easy-to-read, text-based format β perfect for tables, compact dashboards, or KPI summaries.
π§ Pro Tip:
You can change the symbols to anything else that fits your theme:
-
π΅ βͺοΈ
-
β β
-
β β
-
β β
Just replace the characters in the formula accordingly.
π Why Use This Instead of a Chart?
-
Simple to insert in cells or tables
-
No need to format axis, labels, or colors
-
Easily copy-paste into dashboards or reports
-
Compatible with Google Sheets too!
π Want More?
Explore our full collection of dashboard tricks and Excel tutorials:
Share:
Build an Attendance Tracking HR Dashboard in Excel β Step-by-Step Guide