Percent Progressive bar

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

1 Like

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:

:green_square::green_square::green_square::green_square: (100%)
:green_square::green_square::green_square: (75%)
:green_square: (25%)
:green_square::green_square: (50%)
:green_square: (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
				),
				"🟩🟩🟩🟩"
			)
		)
	)
)