Hi mates:
As you know, there was a new feature in Airtable about progressive bar. Is there any way to show it in Softr`s fields? because it changes just to the number…
Could be a new feature request… Thanks
Hi mates:
As you know, there was a new feature in Airtable about progressive bar. Is there any way to show it in Softr`s fields? because it changes just to the number…
Could be a new feature request… Thanks
I don’t believe so, but I’m not on the Softr plan with graphs and could be incorrect (please correct me if this isn’t right).
As a work around, you could use a formula field to display emojis to create a sort of process bar that could be displayed in Sofr as a process bar using a text field:
(100%)
(75%)
(25%)
(50%)
(25%)
Thanks @rrthegefsrht for your answer… could you share your workaround to get the result, that I think I can use it in Airtable?? Have you done it with an IF statement??
IF(
AND(
{Value}>=0,
{Value}<25
),
"🟩",
IF(
AND(
{Value}>=25,
{Value}<50
),
"🟩🟩",
IF(
AND(
{Value}>=25,
{Value}<50
),
"🟩🟩🟩",
IF(
AND(
{Value}>=25,
{Value}<50
),
"🟩🟩🟩🟩"
)
)
)
)
Thank you for your help, it worked for what I was looking for. In my case, the values weren’t numerical but depended on a status column, so I adapted the formula and I’m sharing it here in case it helps someone.
REPT(‘’, ROUND((IF({Value1} = ‘Done’, 1, 0) + IF({Value1} = ‘Done’, 1, 0) + IF({Value2} = ‘Done’, 1, 0) + IF({Value2} = ‘Done’, 1, 0)) * 25 / 25, 0)) & ’ ’ & ROUND((IF({Value3} = ‘Done’, 1, 0) + IF({Value3} = 'Done, 1, 0) + IF({Value4} = ‘Done’, 1, 0) + IF({Value4} = ‘Done’, 1, 0)) * 25, 0) & ‘%’
This is how it looks
We will be adding few more types including progress bar but most probably early next year…
For a quick fix perhaps some formula based html could work ?
I am a piano teacher and I want to create a dashboard for each student to see their progress for each exercise, + a few other metrics relating to the status of their repertoire. Wondering whether Softr would be a good fit and whether I should wait for progress bars etc to be developed, or whether I should look for a different tool for the job?
Early Q1 we will be adding new field types including progress bar