Changing a string to a number

Hi all,
I have a column that has values like this '14%'. Domo is considering it a string, but I'd like it to number, preferably a decimal. I've been trying a few different SQL functions in Dataflows to chop off the percent sign (and then CAST it into a decimal), but the ones that would do the trick don't seem to be supported (Len, Reverse + Stuff). Does anyone have any ideas of how to handle this?
Thank you
Comments
-
If you can get rid of the % out of the value you then you can cast it as a number. Then take that number and just divide by 100. There is your decimal value.
So what about (going step by step)
TRIM(TRAILING '%' FROM 'your_column') = 14
CAST((TRIM(TRAILING '%' FROM 'your_column')) AS DECIMAL(2,2)) = 14.00Finally --
(CAST((TRIM(TRAILING '%' FROM 'your_column')) AS DECIMAL(2,2)))/100 = .14PS - This could be totally wrong but maybe gets you going.
1 -
How about something like this in dataflow?
convert(integer, RTRIM("your column name", '%')) AS "new column name"
1
Categories
- 10.5K All Categories
- 6 Connect
- 916 Connectors
- 250 Workbench
- 463 Transform
- 1.7K Magic ETL
- 69 SQL DataFlows
- 476 Datasets
- 189 Visualize
- 252 Beast Mode
- 2.1K Charting
- 11 Variables
- 17 Automate
- 354 APIs & Domo Developer
- 89 Apps
- 3 Workflows
- 20 Predict
- 5 Jupyter Workspaces
- 15 R & Python Tiles
- 246 Distribute
- 62 Domo Everywhere
- 243 Scheduled Reports
- 21 Manage
- 42 Governance & Security
- 172 Product Ideas
- 1.2K Ideas Exchange
- 11 Community Forums
- 27 Getting Started
- 14 Community Member Introductions
- 55 Community News
- 4.5K Archive