Forum Discussion

Dicken's avatar
Dicken
Post Prodigy
1 year ago
Solved

DAX DATATABLE

    Hi,    I don't think the data type DATETIME availabel in DATATABLE works,  as in a date time should work as a date / time but  Dtable = DATATABLE( "dDate" ,STRING, {     {"01/01/2020"}...
  • Deku's avatar
    Deku
    1 year ago

    Ran it on my machine. That function does not seem to like non hard coded values. This worked

     

    Dtable =
    DATATABLE( 
    "dDate", DATETIME ,
    {{"01/01/2020"}}
    )