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
This is how I create empty DAX tables:
EmptyTable = DATATABLE ( "Other Measures", INTEGER, { { 0 } } )