GitHub user HiepPHX added a comment to the discussion: How do I make Numerical Range filter type work on percentage values?
Super late to the party, but you can work around this by adding a column in your Dataset SQL to simulate the percentage range. For example: SELECT *, percentage_value * 100 as percentage_value_for_filter FROM your table And then you set your filter to point to the percentage_value_for_filter, and now you can properly slide between 0-45 instead of 0-1. GitHub link: https://github.com/apache/superset/discussions/20916#discussioncomment-13727693 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
