@Federico_Stefanato the SVG slider looks nice but I’m not sure why you had to do it at all?
@louca.developer A slider column can also be a formula column. However a slider will always show a numeric value — there’s no way to force it to show percent.
You can either:
- Make a slider in range from 0 to 1 with increment e.g. 0.01 and have absolute values there. E.g., 0.4 would mean 40%
- Make a slider in range from 0 to 100 with increment 1 but in your formula multiply your percent value by 100.
- Or yeah, go with a custom SVG drawing or a Rectangle-based progressbar-like representation.