Yeah I did that already. But I have a columns that work with this data so I had to create a separate columns which is a bit of a pain when the solution is very simple.
I’m guessing it’s a little more complicated because I assume that glide treats all columns in the database as strings. To sort by number, all string values would have to be converted to decimal or integer values. Then there needs to be error handling if the value is not a valid number. Probably not too bad to program, but not completely cut and dried.
@david what do you mean? It isn’t working for me. See the screenshot below. The column that is being sorted is “submitted” but you can see that it is not displayed in the correct order.
You can see that it is sorting by character, not numeric value. (That’s why the “$95” is first, but the “$11,600” is last).
Ah, I see. Yes, Glide does not understand currency values as numbers yet. If your column were formatted as a number (no currency symbol) then Glide could sort it. You can mirror your currency column with e.g. ={A2:A} then format it as a simple number, then sort on that.