Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
IoannisT
Frequent Visitor

Create table and populate with measures from other tables (for Radar Chart)

Hi Fabric community.

 

I am trying to create a visual utilising the Radar Chart but I am facing the following problem.

I have multiple tables and in each table I have various measures.

When I poplate them on a matrix, eveything works fine but when I try to apply the same principle on a radar chart, it doesn't work.

 

My initial though is to create a new table and "drop" the measures for each individual measure.

 

If I confused you, you are right, here is an image of the problem.

 

IoannisT_0-1715417971737.png

When I use the following static table, I get the right result on top 2 charts. When I use the measures from multiple tables, I get the lower chart.

 

 

Category	Budget	Actual	Varience
Apparel	5000	1927	3073
Gifts	1000	4000	-3000
Flowers	1500	2070	-570
Invitation	1500	1156	344
Music	2000	735	1265
Photography	3000	1986	1014
Other Expenses	5000	7590	-2590

 

 

-----------------------

Was thinking something like that if possible???

IoannisT_0-1715418276341.png

 

 

Any ideas?

2 REPLIES 2
v-heq-msft
Community Support
Community Support

Hi @IoannisT ,
Based on your description, if you want to implement putting different measures in different rows, you can try to create a calculation table to summarize this data

Table 2 = 
SUMMARIZE(
    'Table',
    'Table'[Category],
    "Column",
    IF(
        [Category] = "Music",
        [Measure],
        IF(
            'Table'[Category] = "Gifts",
            [Measure 2],
            IF(
                [Category] = "Flowers",
                [Measure 3]
            )
        )
    )
)

Final output

vheqmsft_0-1715569349441.png

 

Best regards,
Albert He

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

 

Hi v-heq-msft

 

Thanks for your reply.

Unfortunately this method works conditionally only for static values.
If I apply a filter (i.e. trhough a slicer) then the radar chart remains static.

Any ideas?

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.