Native progress bar

Hello,
It would be nice if it’s possible to have a kind of field displaying a progress bar/rating in the table

Thanks
image

6 Likes

I just started using Grist and wanted the same.
It’s a very late reply but, if someone else needs a workaround, I am using the formula bellow:

# $Progress is a column with values from 0.0 to 1.0
#"20" is to map $Progress to an integer between 0 and 20
#(this is a kind of rudimentar "resolution" for the progress bar
mapped_value = int($Progress * 20)
# Create the progress bar with '█' for progress and '░' for empty space
progress_bar = '█' * mapped_value + '░' * (20 - mapped_value)
progress_bar

It looks like this:
Captura de tela 2024-11-05 201733

2 Likes