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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Disconnected/Summary Table

Hi all,

I wish to create a small summary table that gives my users a bit more information with key metrics on a table. Ideally, I only have one slicer with years 2021,2022 etc.  How can I create a table with a summary of Total sales, Total orders received to date, Completed Orders to date and several key months i.e 2,4,5,6,8,14 that show a Order completion % based on when the orders where complete. For example we are in the 6month (June), some of the orders such as from Camberwell stores have all been delivered but in the 4month only 6 orders were completed.

How can i create such a table as below in PowerBI and connect it to my master table with order and delivery dates?

Stores Total Sales Total Orders Orders Delivered to date2Month4Month5Month6Month8Month14Month
Hampton 120001009020%40%75%90%  
Camberwell500002020 30%75%100%  
Caufield 9000003052% 17%   
Sandringham20000015070   47%  
Mentone300004035   88%  
Sandtown170000500120   24%  


I have created a table (Placed on the rows) Categories = {
("Total Sales","01"),
("Total Orders to date","02"),
("Orders Delivered to date","03"),
("2Month","04"),
("4Month","05"),
("5Month","06"),
("6Month","07"),
("8Month","07"),
("14Month","07")
}



1 ACCEPTED SOLUTION
Dhacd
Resolver III
Resolver III

Hi @Anonymous ,

I can provide you with a direction.
Create measures for all the categories you have mentioned. 
Eg: MeasureTotalsales = sum(table[Total Sales])
MeasureTotal Orders to date = Sum(Total Orders) and so on....

And create a switch like below.
Switch('categorytable'[Categories] ,
       "Total Sales",MeasureTotalsales,
        "Total Orders to date",MeasureTotal Orders to date,
                                         .
                                          .

till the last table.
Then use the category column from the category table inside of a table and add the switch measure as another column. Make sure that the category table and the fact table have no relationship.

Reply if you face any issues.

If this post helps, then please consider accepting it as the solution to help the other members find it more quickly.
Regards,
Atma.

View solution in original post

1 REPLY 1
Dhacd
Resolver III
Resolver III

Hi @Anonymous ,

I can provide you with a direction.
Create measures for all the categories you have mentioned. 
Eg: MeasureTotalsales = sum(table[Total Sales])
MeasureTotal Orders to date = Sum(Total Orders) and so on....

And create a switch like below.
Switch('categorytable'[Categories] ,
       "Total Sales",MeasureTotalsales,
        "Total Orders to date",MeasureTotal Orders to date,
                                         .
                                          .

till the last table.
Then use the category column from the category table inside of a table and add the switch measure as another column. Make sure that the category table and the fact table have no relationship.

Reply if you face any issues.

If this post helps, then please consider accepting it as the solution to help the other members find it more quickly.
Regards,
Atma.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.