Question : Help with Excel Formula

Hi All,

In the below attachment, cases processed for Mar'10 (cell - B32) should populate the sum of all the cases for Mar'10 & similarly for all the following months.

In the Target column (Cell - C32), Target should be the count of No. of "Live" associates * their count i.e 350), for example for Mar'10 , target would be 3*350=1050

Warm Regards,
Rohit.
Attachments:
 
ee
 

Answer : Help with Excel Formula

Hi kosenrufu,

the best way is to ask your Excel! :)
Start macro recording, select your graph and perform needed actions. Then stop recording and see result.
You'll get something like

    ActiveChart.SeriesCollection(1).Name = "='Sheet1'!$B$1"
    ActiveChart.SeriesCollection(1).Values = "='Sheet1'!$B$2:$B$3"
    ActiveChart.SeriesCollection(1).XValues = "='Sheet1'!$A$1:$A$3"

You may assign a range directly without manipulating strings, i.e.

ActiveChart.SeriesCollection(1).Values = MyRange

Alex
Random Solutions  
 
programming4us programming4us