Sort numbers by value, not alphabetically

I'm trying to sort a column by price low->high but the behavior defaults to sorting alphabetically.
Current sorting: 1, 11, 123, 2, 23
Desired sorting: 1, 2, 11, 23, 123
Is there a way to do this?

Hi @gschubiner
That's because it's a string column, not a numeric column.
You'll need to convert your data to numeric, that's currently not something Metabase can do.