Skip to content

Compact number formatting option for tables (at least) #68780

Description

@mheftisw

What problem will this feature request solve?
On trend and number visualizations, when the number is just too big the format of the number is automatically adjusted which is very convenient (even if more configuration options would be nice)
For example: 23 345 000 becomes 23,3 M.
On table visualization, we do not have this option and the only get-around, we found was to do it on SQL:
CASE
WHEN value > 10000000 THEN round(value / 1000000 ,1) ||" M" ...

But we have M, K values in the table then sorting does not work.

  • We created a hidden KPI to have the right sorting by default, but if the users play with the sorting option (which is also intended), it's definitly not working
  • We also tried to add parameter but it adds complexity when metabase offers a nice sorting option natively.

Describe the solution you'd like.
Have to possiblity to configure the compact option for numbers on table visualization.

How does this feature request impact you?
Improve UX/UI of the dashboards to our external users.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions