Greg Trzeciak walks users through three progressive techniques for building progress bars in Power BI. The tutorial covers beginner, intermediate, and advanced methods that help visualize goals and track completion percentages in dashboards using stacked bar charts, DAX measures, and conditional formatting.
Greg starts with the basics by showing how to create a simple stacked bar chart to display progress towards a target goal.
Greg then demonstrates a more refined method using DAX to calculate progress percentages and enhance visuals with conditional formatting.
Current Progress = SUM(Progress)
Target Goal = SUM(Goal)
Progress % = [Current Progress] / [Target Goal]
In the final level, Greg introduces a creative twist by showing how to represent the remaining progress and reward overachievers with an emoji.
Progress Left = IF([Progress %] > 1, 0, 1 - [Progress %])
Overachiever Icon = IF([Progress %] >= 1, "🏆", "")
This adds an engaging, gamified element to reports while preserving accurate data insights. Slicers can still be used to filter by employee and see individual metrics.
Greg encourages viewers to join live or virtual classes at Pragmatic Works, where Power BI Boot Camps are capped at 15 participants, ensuring hands-on learning in a collaborative environment.
This tutorial showcases not just how to build progress bars, but how to make them meaningful, flexible, and visually appealing. Whether you're just starting or want to push the limits of your reports, these techniques will elevate your Power BI dashboards.
Don't forget to check out the Pragmatic Works' on-demand learning platform for more insightful content and training sessions on Power BI and other Microsoft applications. Be sure to subscribe to the Pragmatic Works YouTube channel to stay up-to-date on the latest tips and tricks.