Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
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
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
🙏
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
68 | |
61 | |
18 | |
17 | |
13 |