Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I have a model, with around 20 measures created.
I am trying to create a calculated table, to just display a list of measures:
col1, Measure, Value.
I am doing
=DATATABLE( "Type", STRING,
"Measure", STRING,
"Value", DOUBLE.
{'xyz', 'Measure1', Measure1}
)
But it doesnt seem to work...
Solved! Go to Solution.
Hi @Anonymous
try
SELECTCOLUMNS (
{ ("name1", [measure1]), ("name2", [measue2])}, "Measure", [Value1], "Value", [Value2])
Hi @Anonymous
try
SELECTCOLUMNS (
{ ("name1", [measure1]), ("name2", [measue2])}, "Measure", [Value1], "Value", [Value2])
User | Count |
---|---|
22 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
12 | |
11 | |
7 | |
6 |