How to convert a number into text

Hi,
I have a character variable that contains numbers (1 to 7). When I load it into DOMO it come out as numeric variable but I don't want it that way. I want to keep it as Character/text datatype itself.
 

Comments

  • guitarhero23
    guitarhero23 Contributor

    How is it coming into Domo? Native connector? Workbench? File Upload?

     

     

    Depending on the above you might be able to set it in the original dataset. However regardless you can use the ETL dataflow to change the column type.

     

    1: Click + in upper right and choose Data>ETL

    2: Add the dataset as the input dataset.

    3: Add the "Set Column Type" block and connect the input dataset to it.

    4: Set the column you want to change the type 

    5: Add an output dataset 

     

    This new output dataset is what you would use to build cards out of



    **Make sure to like any users posts that helped you and accept the ones who solved your issue.**
  • If you dont want to create a new dataset you could use a beastmode to force the number to text

     

    concat('',`Sold Price`,'')

    Screen Shot 05-22-19 at 12.44 PM.PNG

    Domo Arigato!

    **Say 'Thanks' by clicking the thumbs up in the post that helped you.
    **Please mark the post that solves your problem as 'Accepted Solution'
  • You can also just use:

    concat(`Sold Price`)

    “There is a superhero in all of us, we just need the courage to put on the cape.” -Superman
This discussion has been closed.