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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
GeorgiBarov
Frequent Visitor

Average YTD by category

Hi guys,

How can I calculate the average year to date Quantity by Assay?

I have table like:

 

OidAssayQuantityDate
1As0.5746331/1/2016 0:00
2Ag8563.6381/2/2016 0:00
3Au3122.6661/3/2016 0:00
4S240.01461/4/2016 0:00
5Cu3.2078821/5/2016 0:00
6Ag64222.551/6/2016 0:00
7As17.165471/7/2016 0:00
8Cu57.415551/8/2016 0:00

 

Thank you in advance 🙂

1 ACCEPTED SOLUTION
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @GeorgiBarov

 

You could try to create the measure below to get your desired output.

 

average_ytd =
TOTALYTD (
    AVERAGE ( demo[Quantity] ),
    'Table'[Date],
    FILTER ( ALL ( demo ), 'demo'[Assay] = MAX ( 'demo'[Assay] ) )
)

The output is below.

 

Capture.PNG

 

If you need additional help please share your expected output.

 

Best Regards,

Cherry

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @GeorgiBarov

 

You could try to create the measure below to get your desired output.

 

average_ytd =
TOTALYTD (
    AVERAGE ( demo[Quantity] ),
    'Table'[Date],
    FILTER ( ALL ( demo ), 'demo'[Assay] = MAX ( 'demo'[Assay] ) )
)

The output is below.

 

Capture.PNG

 

If you need additional help please share your expected output.

 

Best Regards,

Cherry

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi @v-piga-msft and thank you for the reply

I tried your formula but it calculate the AVG([Quantity]) only if there is one [Quantity] per day.
If we have a few records of Quantity related to a one day the formula is wrong.

In the table above Quantity is automaticaly summurized, but actualy there are a few records per day

 

Here are the examples:

Expected value on 01-DEC-2016 / average_ytd is: 205 not 102.5

Thank you 🙂


Capture1.PNGCapture2.PNG

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.