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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Jacques_N
Frequent Visitor

Summarizecolumn fillter

Hello to all

I have a table, with Date; Plant; material code and qty delivered , by day and that for 3 years.

I would like to aggreagate this table by Plant/material code (agregation of qty delivered) for the 12 previous month of the date selected in my date slicer.

I tried with summarizecolumns , but I am unable to firter for the 12 previous month. 

 

Thanks for your help.

 

Jacques

2 REPLIES 2
v-yingjl
Community Support
Community Support

Hi @Jacques_N ,

To summarize a table based on date slicer, create a calculated table first:

summarize table =
SUMMARIZE (
    'Table',
    'Table'[Date],
    'Table'[Matrial code],
    'Table'[Plant],
    'Table'[qty delivered]
)

Then create a visual control measure and set its value as 1 in the visual filter:

control =
VAR _date =
    SELECTEDVALUE ( 'summarize table'[Date] )
VAR _d =
    SELECTEDVALUE ( 'Table'[Date] )
RETURN
    IF (
        _date <= _d
            && _date
                >= DATE ( YEAR ( _d ) - 1, MONTH ( _d ), DAY ( _d ) ),
        1,
        0
    )

date slicer.png

 

Best Regards,
Yingjie Li

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

parry2k
Super User
Super User

@Jacques_N seems like you are looking for rolling 12 months

 

Rolling Total = 
CALCULATE ( SUM ( Table[Qty] ), DATESINPERIOD ( DateTable[Date], MAX ( DateTable[Date] ), -12, MONTH )

 

I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos whoever helped to solve your problem. It is a token of appreciation!

Visit us at https://perytus.com, your one-stop shop for Power BI related projects/training/consultancy.

 



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

Power BI Carousel June 2024

Power BI Monthly Update - June 2024

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

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

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