Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Why DATATABLE dax with single column not accepting multiple values

I am getting an error that only single value is expected to pass and unable to understand this. Here I'm creating a new column in existing table.

 

Mass UoM = DATATABLE("Mass UoM",STRING,{{"Kg"},{"Lb"}})

 

 

4 Replies

  • Anonymous , Hope You are creating a new table. I am able to do that

     

     

     

    Table = DataTable("Mass UOM", STRING
                   ,{  
                            {"Kg"},  
                            {"Lb"} 
                    }  
               ) 

     

     

     

     

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi,

    I am not sure what you are tring to accomplish here. Could you be more specific?