How can we help?

Progress Bar

Show current value vs a goal with a horizontal progress bar

Renders a horizontal progress bar showing current value vs a goal.

SQL Shape

Two numeric columns: current value and goal value. Only the first row is used.

SQL
SELECT
  COUNT(*) AS completed,
  100 AS goal
FROM tasks
WHERE status = 'done'

Options

OptionDescription
ColorBar fill color
Show percentDisplay the percentage (e.g. 65%)
Show valuesDisplay current / goal (e.g. 65 / 100)