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

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

Reply
Tani4ka
Helper I
Helper I

Average for Current months only and totals for the rest of the months

Hi there,

I need to create a dynamic measure that will do next:

 

1. if the date is current month , then 

YoY sales = (Sales/ ((Sales LY / number of days in the months) *number of days Months to date)) -1

 

otherwise 

 

YoY sales = calculate(divide([sales],[Sales LY]), -1)

 

I used the below dax to get the number of days in the months 

 

no_days =
DATEDIFF(
EOMONTH(MAX(dim_date[full_date]),-1),
EOMONTH(MAX(dim_date[full_date]),-0),DAY)
 
and for the curent month:
Current Month = MONTH(TODAY())
 
I'm not sure how to join this all together to get the correct results. The final resutls should be YoY for past months and for the current month only avg based on the number of days.
Assuming today is the 3rd March expected results should be -31% not -93%
Tani4ka_0-1646056436040.png
 
 Thanks a lot for all your help,
T

 

2 REPLIES 2
Thejeswar
Super User
Super User

Hi @Tani4ka ,

If you can share a pbix file with some sample data, people would be easily able to help you much quicker

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

Check out the February 2025 Power BI update to learn about new features.

Top Kudoed Authors