Yes, make the column be a character column, which can hold character strings that look like numbers.
Right-click in the column header->column properties, change Numeric to Character.
Numbers represented as character strings may not behave the way you expect. Sorting, in particular, makes "9.2" > "1000.0" because the first character, "9" is bigger than "1".
Craige