Monthly Target Tracking

JamieP89

Board Regular
Joined
Mar 8, 2022
Messages
64
Office Version
  1. 365
Platform
  1. Windows
Hi All,

I'm wondering if the below scenario is possible?

So let's say I have the following data
MonthMonth 2Month 3Month 4Month 5Month 6Month 7Month 8Month 9Month 10
Target100,000
100,000
100,000100,000100,000100,000100,000100,000100,000
Actual100,000

In the example above I want to track my target to date. Now if we look at it ourselves we know currently we are 100% to date. But when I ask excel to do a SUMIFS I have to state the range I want to calculate the sums which means the data is taking a total sum of the target and measuring it against the actual.

The question is, is there a way to as it to only measure if on a target to date RAG status that we are in fact 100% and green and not red(because the calculation thinks were only 10% target to date?
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
What does your current formula look like?
In relation to the data posted where is the "Target to Date" being outputted?

Here is 1 scenario.

Book1
ABCDEFGHIJKL
1MonthMonth 1Month 2Month 3Month 4Month 5Month 6Month 7Month 8Month 9Month 10Total to date
2Target100,000100,000100,000100,000100,000100,000100,000100,000100,000100,000200,000
3Actual100,000100,000200,000
4
5%100.00%100.00%0.00%0.00%0.00%0.00%0.00%0.00%0.00%0.00%100.00%
Sheet1
Cell Formulas
RangeFormula
L2L2=SUMIF($B$3:$K$3,">0",$B$2:$K$2)
L3L3=SUM(B3:K3)
B5:L5B5=B3/B2
 
Upvote 0
Solution
Sorry I should have been clearer, the target to date would be being output in a new column similar to your mock up. It looks as if your L2 range formula would do the trick based on the behaviour I would expect to see.

Just to be clear so that I know I understand it, essentially what the formula is saying is if B3 to K3 is above 0 then B2 to K2 (and it's only SUMMING the cells in row 3 that are filled in ??

If that is the case thank you very much @bstory84 !! Very helpful indeed!
 
Upvote 0
You're welcome! Also, Yes you are correct.
The SUMIF is just saying only add values from Row#2 if Row #3 has a value >0.
 
Upvote 0
Glad I've understood it then :) Think I was just not saying that well enough in my brain to make it work!
 
Upvote 0

Forum statistics

Threads
1,214,824
Messages
6,121,784
Members
449,049
Latest member
greyangel23

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top