Create Static Tables in DAX Using the DATATABLE Function

Поділитися
Вставка
  • Опубліковано 21 сер 2024
  • The DATATABLE function can create static tables in a Power BI model specifying column names and data types. Article and download: sql.bi/27271/?...
    How to learn DAX: www.sqlbi.com/...
    The definitive guide to DAX: www.sqlbi.com/...

КОМЕНТАРІ • 36

  • @ariarc
    @ariarc Рік тому +2

    It's been more than two years since this video was made and posted, and yet I haven't seen anyone explain static tables in DAX so clearly and thoroughtly. And believe me, I have looked far and wide. Thank you.

  • @CJ-jc8tn
    @CJ-jc8tn 3 роки тому +2

    Thank you Alberto for sharing different ways to create static tables. I wasn't aware of the DATATABLE function and will definitely use this approach going forward. Another SQLBI video, another nugget of knowledge learned !

  • @davidirias3459
    @davidirias3459 3 роки тому +1

    You really are the master of masters in POWERBI!!!! Ver helpful.

  • @stevemorrison9144
    @stevemorrison9144 3 роки тому +1

    You have been really great for a novice user ..many thanks

  • @ThepExcel
    @ThepExcel 3 роки тому +1

    Thx for so many choices explained

  • @advent7324
    @advent7324 2 роки тому +1

    Excellent info on creating tables. Thanks

  • @jaimeildefonsosegurapena7328
    @jaimeildefonsosegurapena7328 3 роки тому +2

    You could also add a M expression:
    = Table.FromRows(
    {
    {"LOW", 0, 000},
    {"MEDIUM", 100, 1000},
    {"HIGH", 1000, 99999}
    },
    type table [#"Price Range" = text, #"Min Price" = number, #"Max Price" = number]
    )

    • @SQLBI
      @SQLBI  3 роки тому +1

      Good point - you have to open the M editor to do that, you cannot use a calculated table in that case.

  • @joaovasconcelos5360
    @joaovasconcelos5360 Рік тому +1

    Excellent!

  • @OnoDus
    @OnoDus 3 роки тому +2

    Thank you Alberto! Great content

  • @manjun1892
    @manjun1892 3 роки тому +1

    Really helpful content.Thanks Alberto.

  • @gondebas
    @gondebas 3 роки тому

    By your leave, master Alberto, you can give names to columns without SELECTCOLUMNS, as simple as that:
    DATATABLE (
    "RangeName", STRING,
    "Price_Min", INTEGER,
    "Price_Max", INTEGER,
    {
    { "Low" , 1 , 10 },
    { "Midium" , 10 , 10 },
    { "High" , 100 , 1000 }
    }
    )

    • @SQLBI
      @SQLBI  3 роки тому

      The example with SELECTCOLUMNS uses another syntax - table constructor - which create a table using dynamic expressions (not allowed in DATATABLE) but cannot control the column name directly.

  • @kalinduSekara
    @kalinduSekara 3 роки тому +1

    Simple but very useful

  • @braveheart3917
    @braveheart3917 2 роки тому +1

    Nicely explained

  • @pmsocho
    @pmsocho 3 роки тому +1

    Thanks for the video!

  • @advrohitowhal9794
    @advrohitowhal9794 3 роки тому +1

    THANKS !

  • @papachoudhary5482
    @papachoudhary5482 3 роки тому +2

    Thanks! Sir

  • @Phoenixspin
    @Phoenixspin 3 роки тому +1

    Thanks, great information.

  • @Bharath_PBI
    @Bharath_PBI 3 роки тому +1

    Thank you 👍

  • @BryanBonjour
    @BryanBonjour 3 роки тому +1

    thanks

  • @davidtawa8338
    @davidtawa8338 3 роки тому +1

    Thxs!!

  • @RM-wz2ug
    @RM-wz2ug Рік тому +1

    Hello Alberto and thank you for sharing so much of your knowledge. I am relatively new to PBI but have learned a great deal from your videos. I have a challenge for which I can find no solution and wondering if you have ideas. I find myself with an inventory source that does not have a date/time stamp. The data is simply current data based on the latest transactions from the source system so I don't believe I can use incremental refresh. I need to figure out how to create a snap shot of this data each Friday. I am refreshing the data daily and trying to find a way to capture and keep a snapshot with the Friday Date/Time stamps so that I start building a history of inventory as of Friday's each week in a single table. The intent is to create visuals (eventually) that compares current inventory to year ago, month ago, etc. Ideas?

    • @SQLBI
      @SQLBI  Рік тому

      There are examples of similar scenarios in our book: www.sqlbi.com/books/analyzing-data-with-microsoft-power-bi-and-power-pivot-for-excel/
      And course: www.sqlbi.com/p/data-modeling-for-power-bi-video-course/

  • @amarnadhgunakala2901
    @amarnadhgunakala2901 3 роки тому +1

    That's cool stuff

  • @MrSimp75
    @MrSimp75 Рік тому +1

    Hello Alberto- How can one create user defined functions in SSAS cube to be used in DAX query. Something like inbuilt function like DATEVALUE() etc.

  • @JS-ts2vv
    @JS-ts2vv 3 роки тому

    Thank you Sir, I was trying using this way as part of the Selector value to switch between two different measures using two different time attribute (activating by userelationship) to dimdate table. however, it doesnt work as plan. I have tried both using IF and SWITCH with no luck. the scenario is to have a chart that can show volumes either by Fiscal Year or Standard Year base on the selector. Would really appreciate your advise here and thanks in advance for the support!

  • @rokiczaaa
    @rokiczaaa 9 місяців тому

    How to do similar table but with measures? I have to combine some measures to create a chart

  • @ashishmohan4707
    @ashishmohan4707 3 роки тому

    Hi
    very useful video and very practical need everyone for every project ......very big thanks to share with us.
    If it can possible can you plzz provide us excel data file which you used.
    Very greatful for us...👌👌👌👌👌👌👌👌💐💐💐💐🎂🎂🎂🎂🎂🎂🎂🎂🎂🎂🎂🎂

    • @SQLBI
      @SQLBI  3 роки тому

      You can download the sample files following the link in the video description.

  • @BernatAgulloRosello
    @BernatAgulloRosello 3 роки тому

    What about loading an excel file? You just need to modify the excel and refresh the table 😊 and you can create calculated columns (like a dynamic max value) workout trouble

    • @BernatAgulloRosello
      @BernatAgulloRosello 3 роки тому +1

      Then again, not as instant as a dax expression I know, and if a new column appears it breaks everything. Plus and cons as usual

  • @tameraziz2104
    @tameraziz2104 3 роки тому

    Thank you.. Alberto, I have a real case which requires me to create a dynamic table coming from measures.
    Any possible way?

    • @SQLBI
      @SQLBI  3 роки тому

      A measure can return only a scalar value (string, number). You can create tables in variables within the DAX expression of a measure, but you cannot return them from a measure.

  • @Alpacastan21m
    @Alpacastan21m 2 роки тому

    How can we use data table but use measures and dynamic formulas instead of static data?

    • @SQLBI
      @SQLBI  2 роки тому

      Use the table constructor instead: dax.guide/op/table-constructor/
      Then use SELECTCOLUMNS to control column names.