Why are my values in an excel file being view as text?

Options

Why are my values in an excel file being view as text?

Comments

  • Godzilla
    Godzilla Contributor
    Options

    I'm assuming you are loading the excel file directly into domo as an excel datasource. if you do this, you don't have control over the data types and lot of times it does guess the data types wrong.  unfortunately, you have no control over it. 

    my recommendation would be to download Domo Workbench and use that to upload your data. It gives you full control over the data types for each column and lot more. here's an overview of workbench.

     

    http://wiki.domo.com/confluence/display/428BA51/Using+Workbench+3+to+upload+data 

    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'
  • kshah008
    kshah008 Contributor
    Options

    @Francisco, did Godzilla's reply help answer your question?

  • quinnj
    quinnj Contributor
    Options

    @Francisco, also note that if it's just a column or two that are being read as text, often you can do a simple beast mode to convert it to a number. Such as:

     

    `column_being_read_as_text` + 0

     

    This implicitly converts the `column_being_read_as_text` column to a number to add 0, the result also being a number.