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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

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
Microsoft Employee
Microsoft 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
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.