cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
Chris_Ruddick
Frequent Visitor

Multiple filters AVERAGEX - Orders/Month

 

I have the currently existing Measure to calculate the average number of orders per month:

 

AVG Orders/Month =
AVERAGEX(
    KEEPFILTERS(VALUES('Doc Date Calendar'[Month])),
    CALCULATE(DISTINCTCOUNT('UK Sales TOTAL'[Doc Number]))
)
 
I would like to create a new measure calculating this value, but only for 2022 data. Effectively it will require an additional filter using the "Doc Date Calendar [Year]" field.
 
Is anyone able to help with the syntax of that?
 
Thanks in advance
 
1 ACCEPTED SOLUTION
Mikelytics
Resident Rockstar
Resident Rockstar

Hi @Chris_Ruddick 

 

Please try the following:

 

AVG Orders/Month of 2022 =

CALCULATE(
   AVERAGEX(
       KEEPFILTERS(VALUES('Doc Date Calendar'[Month])),
       CALCULATE(DISTINCTCOUNT('UK Sales TOTAL'[Doc Number]))
   ),
   Filter(ALL(DateTable),DateTable[Year] = 2022)
)

 

Best regards

Michael

-----------------------------------------------------

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

Appreciate your thumbs up!

@ me in replies or I'll lose your thread.

-----------------------------------------------------

LinkedIn

------------------------------------------------------------------
Visit my blog datenhungrig which I recently started with content about business intelligence and Power BI in German and English or follow me on LinkedIn!

View solution in original post

2 REPLIES 2
Mikelytics
Resident Rockstar
Resident Rockstar

Hi @Chris_Ruddick 

 

Please try the following:

 

AVG Orders/Month of 2022 =

CALCULATE(
   AVERAGEX(
       KEEPFILTERS(VALUES('Doc Date Calendar'[Month])),
       CALCULATE(DISTINCTCOUNT('UK Sales TOTAL'[Doc Number]))
   ),
   Filter(ALL(DateTable),DateTable[Year] = 2022)
)

 

Best regards

Michael

-----------------------------------------------------

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

Appreciate your thumbs up!

@ me in replies or I'll lose your thread.

-----------------------------------------------------

LinkedIn

------------------------------------------------------------------
Visit my blog datenhungrig which I recently started with content about business intelligence and Power BI in German and English or follow me on LinkedIn!

That works perfectly, thank you!

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors