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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
MakingBreaddata
Regular Visitor

Calculate the Average from the sum of a day

Hey together, 

 

i´ve got a problem with a Measure im collecting the data of the disposed parts in our production. The employes are booking it to our system the whole day and assign it to a production line. Looks like this:

MakingBreaddata_0-1688554882735.png

now i want to know what is the avarage in a day based on the sum  of all days on each line. The Goal is to compare the dayl disposal with a the average disposals from the last months (The whole Data). I tried a lot of combinations but nothing worked out. 

 

the Graph for the daily disposal looks good (it is separatet in two classes disposed and reworked). At least i only need a Measure to which can be used to compare the average.

MakingBreaddata_1-1688555261315.png

Thanks in advance

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @MakingBreaddata,

You can try to use the following measure formula if it suitable for your requirement:

 

formula =
VAR summary =
    SUMMARIZE (
        Table1,
        [Category L],
        [Date],
        "Total", SUM ( Table1[Value] )
    )
RETURN
    AVERAGEX ( summary, [Total] )

 

Regards,

Xiaoxin Sheng

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @MakingBreaddata,

You can try to use the following measure formula if it suitable for your requirement:

 

formula =
VAR summary =
    SUMMARIZE (
        Table1,
        [Category L],
        [Date],
        "Total", SUM ( Table1[Value] )
    )
RETURN
    AVERAGEX ( summary, [Total] )

 

Regards,

Xiaoxin Sheng

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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.

Top Solution Authors
Top Kudoed Authors