The title might be confusing.
I have a list as follows
let
Source = {"c1","c2","c3"}
in
Source
I want to end up with an empty table as this is where the column names come from the list values.
Thank you in advance
Proud to be a Super User!
New Animated Dashboard: Sales Calendar
Solved! Go to Solution.
let
Source = {"c1","c2","c3"},
EmptyTable = #table(Source,{})
in
EmptyTable
Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension! |
DAX is simple, but NOT EASY! |
let
Source = {"c1","c2","c3"},
EmptyTable = #table(Source,{})
in
EmptyTable
Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension! |
DAX is simple, but NOT EASY! |
Flattered to be included with such illustrious company.
--Nate
🙏
Proud to be a Super User!
New Animated Dashboard: Sales Calendar