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
sanjay_akut
Regular Visitor

Monthly Goal Trending

So I have a goal table containing the MONTHLY goal for a particular measure which I have stored in a goals table using the first day of the month for the month that the goal is applied to (1/1/2016 would have a goal value of 100).  For the actuals, we actually capture that daily and I am trying to determine if we are "on target" or not based on the goal and the actuals MTD.  I am not sure how to properly determine what the daily value of the goal should be in order to determine if our actuals are trending to be able to make that goal.  Using the KPI visual it turns green only after the date where we meet the goal, but doesn't help to determine trending since my goal table only has that monthly goal.

 

Any help to point me in the right direction would be greatly appreciated.

3 REPLIES 3
SamLester
Employee
Employee

Could you use a Gauge control to show this instead of a KPI visual? You could set the value as the sum of the daily actuals and the maximum value to the Monthly Goal. You could also set the Target Value to be a calculation based on days in the month.

 

 Actuals.PNG

 

 

Thanks,
Sam Lester (MSFT)

Thanks for the suggestion, this is a good start.  Any suggestions on creating the calculation using the days in a month, so if the monthly goal was 30 I could know that on the 11th day of the month, if my value is 11 I am "on target"?

 

 

Sure, you can use DAX date/time calculations to determine this. Set the target value of the gauge to this calculated column to reflect the calculated goal.

 

Ex:

 

DAY(now()) / DAY(EOMONTH(NOW(),0)) * Goals[MonthlyGoal]

 

Today is June 12th.

DAY(now()) returns 12  
DAY(EOMONTH(now(),0) returns 30   (number of days in June)

 

So the calculation would be:

current day / days in month * montly goal

 

Thanks,
Sam Lester (MSFT)

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.

Top Kudoed Authors