Creating Tables in Power BI

  • Comments posted to this topic are about the item Creating Tables in Power BI

  • One more DAX expression to try.  Note that DATATABLE() has some limitations, e.g. TODAY() & NOW() can't be used as values.

    Players = DATATABLE(
    "Name", STRING,
    "Number", INTEGER,
    "Birthdate", DATETIME,
    {
    {"Messi", 30, "1982-06-24"},
    {"Mbappé", 7, "1982-12-20"}
    }
    )

    • This reply was modified 2 years, 4 months ago by  Sean McLarty.

    Regards,

    Sean

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply