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
Shenee
Helper I
Helper I

Measure showing current month and previous month percentage rate

 

Hi,

Does anyone know of a measure that could be used to determine the percentage rate for the current month and that of the previous month? Below is a table showing the figures I expect to see with the appropriate dax measure. I have also included the dax measure which sadly hasn't worked and a link to the pbix file.

 

Current & Previous month percentage rate by categoryCurrent & Previous month percentage rate by category

 

current month dax.JPG

 

<iframe src="https://onedrive.live.com/embed?cid=3AC7A918C5EB3011&resid=3AC7A918C5EB3011%21409&authk... 

 

 

Many thanks in advance for any help.

 

 

2 ACCEPTED SOLUTIONS

Hi @Shenee 

 

There's no need for a "this month rate" measure.  When you use it in visuals, filter context will take care of calculating it for that month only.  LastMonthRate should be this:

 

LastMonth Rate = 
CALCULATE(
    [Rate],
    PREVIOUSMONTH(dim_date[day_date])
)

 

 

And here's the results

littlemojopuppy_0-1659477399587.png

Hope this helps!  🙂

View solution in original post

v-yalanwu-msft
Community Support
Community Support

Hi, @Shenee ;

You could create a measure.

LastMonth Rate2 = 
CALCULATE([Rate],FILTER(ALLSELECTED('Query2'),[Category]=MAX('Query2'[Category])&&EOMONTH([ActivityDate],0)=EOMONTH(MAX('Query2'[ActivityDate]),-1)))

The final show:

vyalanwumsft_1-1659578917524.png

Best Regards,
Community Support Team _ Yalan Wu
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

8 REPLIES 8
v-yalanwu-msft
Community Support
Community Support

Hi, @Shenee ;

You could create a measure.

LastMonth Rate2 = 
CALCULATE([Rate],FILTER(ALLSELECTED('Query2'),[Category]=MAX('Query2'[Category])&&EOMONTH([ActivityDate],0)=EOMONTH(MAX('Query2'[ActivityDate]),-1)))

The final show:

vyalanwumsft_1-1659578917524.png

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

@v-yalanwu-msft 

Thank you so much and your suggestion worked as it relates to determining LastMonthRate. Could the measure be amended to calculate the CurrentMonthRate? Ideally, I need a measure for Current Month Rate as well. Many thanks for your help once again.

@v-yalanwu-msft 

I have just amended the measure you created for LastMonthRate and been able to create CurrentMonthRate successfully (see dax measure below and a table with the results I expected). Many thanks once again for your help with this.

CurrentMonthRateCurrentMonthRate

 

Expected ResultExpected Result

littlemojopuppy
Community Champion
Community Champion

Hi @Shenee 

 

Do you have a date table and is it marked appropriately?  If so this would be very easy using Time Intelligence.  Current month would be however you are calculating it now.  Prior month would be 

CALCULATE(
    [Rate],
    PREVIOUSMONTH(DateTable[Date])
)

 

Hope this helps!

@littlemojopuppy 

I have got a date table and did create a measure similar to the one you proposed to determine previous month's percentage rate but it didn't work!

previous month.JPG

@Shenee can you provide a sample pbix file?

Hi @Shenee 

 

There's no need for a "this month rate" measure.  When you use it in visuals, filter context will take care of calculating it for that month only.  LastMonthRate should be this:

 

LastMonth Rate = 
CALCULATE(
    [Rate],
    PREVIOUSMONTH(dim_date[day_date])
)

 

 

And here's the results

littlemojopuppy_0-1659477399587.png

Hope this helps!  🙂

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.