DAX create empty table with specific column names and no rows

前端 未结 3 1891
南方客
南方客 2020-12-21 21:07

How to create a table with a specified column name and no rows at all. The following oneliner does what I want but shows error message that there should be second argument i

3条回答
  •  执笔经年
    2020-12-21 21:28

    This is how I create empty DAX tables:

    EmptyTable = DATATABLE ( "Other Measures", INTEGER, { { 0 } } )

提交回复
热议问题