Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello
I want to create a visual with the table:
Check1; CheckType1; Result1
Check1; CheckType2; Result2
The Check1, CheckType1, etc are simply text.
The Result1, Result2 are measures such as the percentage of empty rows in a different table and the percentage of numeric values in a field in another table.
How do I structure my data to create the above output?
Thanks!
Solved! Go to Solution.
Hi, @Anonymous
Try the measure as below:
Measure 4 =
SWITCH (
TRUE (),
SELECTEDVALUE ( 'Table 3'[Measure] ) = "3", [Measure 3],
SELECTEDVALUE ( 'Table 3'[Measure] ) = "2",[Measure 2],
SELECTEDVALUE('Table 3'[Measure])="1",[Measure 1]
)
(the type of the field "measure" is text rather than whole number )
BTW ,I'm not clear why you cannot open my file.
You may refer to this thread or update the version of powerbi desktop to the latest.
Best Regards,
Community Support Team _ Eason
Hi, @Anonymous
Did not fully understand what you meant?
Can you use specific tables and data to show the results you want?
You may check if the following mesures help.
Measure 1 =
IF (
SELECTEDVALUE ( 'Table'[Column1] ) = "Check1"
&& SELECTEDVALUE ( 'Table'[Column2] ) = "CheckType1",
your_measure1,
IF (
SELECTEDVALUE ( 'Table'[Column1] ) = "Check1"
&& SELECTEDVALUE ( 'Table'[Column2] ) = "CheckType2",
your_measure2
)
)or
Measure2 =
SWITCH (
TRUE (),
SELECTEDVALUE ( 'Table'[Column1] ) = "Check1"
&& SELECTEDVALUE ( 'Table'[Column2] ) = "CheckType1", your_measure1,
SELECTEDVALUE ( 'Table'[Column1] ) = "Check1"
&& SELECTEDVALUE ( 'Table'[Column2] ) = "CheckType2", your_measure2
)Here is a sample.
Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I cannot open your file unfortunately:
Object reference not set to an instance of an object.
Also, how am I supposed to use your Measure 1?
I created a table visual, I dragged the Column Check1 and then I dragged the Measure 1 but it breaks.
I think the SELECTEDVALUE is not an applicable function. The code should check the value in Table1[Column1] and display the right calculation next to each value.
Any idea?
Hi, @Anonymous
Try the measure as below:
Measure 4 =
SWITCH (
TRUE (),
SELECTEDVALUE ( 'Table 3'[Measure] ) = "3", [Measure 3],
SELECTEDVALUE ( 'Table 3'[Measure] ) = "2",[Measure 2],
SELECTEDVALUE('Table 3'[Measure])="1",[Measure 1]
)
(the type of the field "measure" is text rather than whole number )
BTW ,I'm not clear why you cannot open my file.
You may refer to this thread or update the version of powerbi desktop to the latest.
Best Regards,
Community Support Team _ Eason
Hello, it's a bit complicated.
I have two tables.
Table1=
Country, Sales
US, 2
DE, 3
UK, 1
Table2=
Owner, Code Number
John, A1
George, A1
James, A2
I want to create a table that combines Table2 plus specific Measures in a third column, i.e. like this:
Table3=
Owner, Code Number, Measure
John, A1, 2
George, A1, 3
George, A2, 1
The percentages above are calculated by Measures based on Table1, e.g.
2 = AVERAGE([Table1[Sales])
3 = MAX([Table1[Sales])
1 = MIN([Table1[Sales])
Any idea?
@Anonymous , with common dimensions you case use option show on row in a matrix
https://www.burningsuit.co.uk/blog/2019/04/7-secrets-of-the-matrix-visual/
Or you can use union and summarize to create the table in structure you want
Thanks but it's not clear which steps I should take, can you explain please?
What structure my source table should have and how do I get the output I want?
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.