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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Anonymous
Not applicable

Average - But need to sum first

Hi,

 

Third time I write this topic.. Website is not helping me out today, haha. Hopefully you guys can 🙂

I need to calculate the average after a sum of the invoices.

Sample below:

 

AmountInvoice Number ACTUAL INVOICE AMOUNT
€ 100.0019700091  
€ 200.0019700091  
€ 150.0019700091 250
€ 250.0019700091  
€ 10.0019700095  
€ 20.0019700095 20
€ 30.0019700095  
€ 5.0019700100  
€ 10.0019700100  
€ 20.0019700100 15
€ 20.0019700100  
€ 10.0019700100  
Average: 68,75  Average: 95


What I need is 95 as outcome, but currently I have 68,75. How do I fix this? I suppose it's easy but I can't get my head around it.


Thank you in advance for helping me out!
Below is my measure:

 

1. Factuur Gemiddelde = 
CALCULATE(
    //Average berekening
    AVERAGEX(
        SUMMARIZE(TransactionLinesBulk,TransactionLinesBulk[InvoiceNumber], TransactionLinesBulk[Bedrag]),
        TransactionLinesBulk[Bedrag]),
        //Filters
            LEFT(GLAccountClass[ClassificationCode],4)="WOmz",
            TransactionLinesBulk[InvoiceNumber] > 0,
            TransactionLinesBulk[Bedrag] <> 0
)

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , Try like

averageX(summarize(Table,table[Invoice Number], "_1",sum(Table[Amount])),[_1])

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@Anonymous , Try like

averageX(summarize(Table,table[Invoice Number], "_1",sum(Table[Amount])),[_1])

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

Hi @amitchandak ,

 

Thanks! Works like a charm. Can you explain what the _1 is and why it works like that?

@Anonymous , it is new column name inside summarize 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors