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
fabio_abbiati
New Member

Design line graph with weekly subtotal from record with differential quantity

Dear All,

 

I have a lot of records with the single quantity (eg. warehouse movements) and I would like to publish a line graphic with the total of each week (eg. weekly stock).

My problem is that I only have the weekly movements and not the week stock.

 

Example:

Week 1 (begining)100
Week 215
Week 3-5
Week 47
Week 5-20
Week 630
Week 78
Week 87
Week 9-30
Week 10-5

 

If I create a line graph with this data, I get something like below:

fabio_abbiati_0-1652798292536.png

This is not what I need beacuse on week 2 my stock was 115 (previous 100 + 15), on week 3 my stock was 110 (previous 115 - 5), on week 4 my stock was 117 (previus 110 + 7), ...

 

I would like to get a graph like below:

fabio_abbiati_1-1652798356000.png

 

Could anyone give me a tip to obtain the second type of graph?

How could I manage the data?

 

Thank you

Fabio

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

Hi @fabio_abbiati ,

 

The condition after FILTER should use '<=', otherwise the data of the first week will be missing.

Measure = 
CALCULATE(
    SUM('Table'[Value]),
        FILTER(
            ALL('Table'),
            'Table'[WeekNum]<=MAX('Table'[WeekNum])
        )   
)
vcgaomsft_1-1653016234180.png

Attached PBIX file for reference.

 

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly -- How to provide sample data

View solution in original post

2 REPLIES 2
v-cgao-msft
Community Support
Community Support

Hi @fabio_abbiati ,

 

The condition after FILTER should use '<=', otherwise the data of the first week will be missing.

Measure = 
CALCULATE(
    SUM('Table'[Value]),
        FILTER(
            ALL('Table'),
            'Table'[WeekNum]<=MAX('Table'[WeekNum])
        )   
)
vcgaomsft_1-1653016234180.png

Attached PBIX file for reference.

 

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly -- How to provide sample data

amitchandak
Super User
Super User

@fabio_abbiati , Assume you have Week No (Whole number too )

 

Calculate(Sum(Table[Value]), filter(all(Table), Table[Week No] < Max(Table[Week no]) )

 

If data is across year then use YYYYWW - Week Year column

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.

Top Kudoed Authors