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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
siemdevlieger
Helper I
Helper I

Create summary table with qtd values (and still showing months in column)

Hi community!

 

I am struggling with creating a summary table showing me qtd values on monthly records.

I know how to do it with measures, but am really looking to have a table with these details, so I can use this table again for other things. The base table that I use contains a huge amount of columns, the summary table should look somewhat like below:Screenshot Power BI.JPG

I tried to achieve it with the summarize and add column function, but I only get the sales per month. I don't succeed in getting the correct QTD values.

 

Someone who tried this before and might have an example formula with some explanation?

 

Thanks in advance!

Siem

 

1 ACCEPTED SOLUTION
v-frfei-msft
Community Support
Community Support

Hi @siemdevlieger ,

 

Have a try 🙂

 

QTD SALES = 
CALCULATE (
    SUM ( 'Table'[Sales] ),
    FILTER (
        ALL ( 'Table' ),
        'Table'[Year] = EARLIER ( 'Table'[Year] )
            && 'Table'[Month] <= EARLIER ( 'Table'[Month] )
            && 'Table'[Product group] = EARLIER ( 'Table'[Product group] )
            && 'Table'[Region] = EARLIER ( 'Table'[Region] )
    )
)

Capture.PNG

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

View solution in original post

3 REPLIES 3
v-frfei-msft
Community Support
Community Support

Hi @siemdevlieger ,

 

Have a try 🙂

 

QTD SALES = 
CALCULATE (
    SUM ( 'Table'[Sales] ),
    FILTER (
        ALL ( 'Table' ),
        'Table'[Year] = EARLIER ( 'Table'[Year] )
            && 'Table'[Month] <= EARLIER ( 'Table'[Month] )
            && 'Table'[Product group] = EARLIER ( 'Table'[Product group] )
            && 'Table'[Region] = EARLIER ( 'Table'[Region] )
    )
)

Capture.PNG

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

Thanks Frank!

 

I have reviewed the formula in your dataset and have made a small addition as it was now giving YTD sales instead of QTD sales. For that I also added the 'Quarter' column in the filter of your formula. It give the exact results then as in my initial question.

 

Power BI QTD sales.JPG

 

I will work tomorrow / Wednesday on implementing this in my own dataset, but have a good feeling about this solution!

 

Will get back to you once implemented with any issues I might encounter!

 

Regards,

Siem

Thanks again Frank,

 

I have implemented this part now in my Dashboard and it works exactly as it should!

It was a crucial part for some customized calculations in my Dashboard and was giving me a bad headache in the last weeks to get this solved 🙂

 

Best regards,

Siem

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.