+ Reply to Thread
Results 1 to 7 of 7

i want to see month/date on which target exceeded

  1. #1
    Registered User
    Join Date
    02-28-2012
    Location
    New Delhi
    MS-Off Ver
    Excel 2007
    Posts
    24

    i want to see month/date on which target exceeded

    hello
    my raw data is in two tables
    table1: name, sales_amount, Sales_date
    table2: name, sales_target

    i have imported table1 data in pivot table as -
    name in row, date in column and sales_amt in sum_total

    my problem is that i want to find out that on which date/month each sales_man exceeded his/her target.

    Is it possible in excel.

    TIA

  2. #2
    Registered User
    Join Date
    02-28-2012
    Location
    New Delhi
    MS-Off Ver
    Excel 2007
    Posts
    24

    Re: i want to see month/date on which target exceeded

    I think 'FORECAST' function can work but with some array formula that will put the cumulative values of sales instead of actual sales.


    Quote Originally Posted by anilrini View Post
    hello
    my raw data is in two tables
    table1: name, sales_amount, Sales_date
    table2: name, sales_target

    i have imported table1 data in pivot table as -
    name in row, date in column and sales_amt in sum_total

    my problem is that i want to find out that on which date/month each sales_man exceeded his/her target.

    Is it possible in excel.

    TIA

  3. #3
    Forum Contributor Portuga's Avatar
    Join Date
    02-20-2004
    Location
    Portugal
    MS-Off Ver
    365
    Posts
    852

    Re: i want to see month/date on which target exceeded

    One way to do it would be to consolidate the information from table 2 to table 1 and add a few helper columns to table1

    Add a helper column in table 1 called "Month" with the month formula feeding from the Sales date Column. =Month(

    Add a helper column in table 1 called "Sales target" where you would put monthly target per name. (Considering that the sales target is fixed, if its variable by month/person, you would probably need a table with that info and then use a vlookup formula for 1 variable of a sumifs formula for 2 variables. Which formula would be dependent on the info contained in table 2 and the way it is displayed.

    Add a helper column in Table 1 called "Target achieved" where you would calculate the sales amount for the person/per month using a "If"/ "Sumifs" combination formula where the display would be either “Achieved” ”Not achieved”

    Then you would add the pivot with these new fields and select the ones you want to see. The pivot would work with data for 1 year only. For several years you would have to add the =year( dimension to it
    If you found the solution to your question. Mark the thread as "Solved"
    Thank everyone that helped you with a valid solution by clicking on their

    There is no such thing as a problem, only a temporary lack of a solution

  4. #4
    Registered User
    Join Date
    02-28-2012
    Location
    New Delhi
    MS-Off Ver
    Excel 2007
    Posts
    24

    Re: i want to see month/date on which target exceeded

    That is fine but i want to learn the array formula method

    Quote Originally Posted by Portuga View Post
    One way to do it would be to consolidate the information from table 2 to table 1 and add a few helper columns to table1

    Add a helper column in table 1 called "Month" with the month formula feeding from the Sales date Column. =Month(

    Add a helper column in table 1 called "Sales target" where you would put monthly target per name. (Considering that the sales target is fixed, if its variable by month/person, you would probably need a table with that info and then use a vlookup formula for 1 variable of a sumifs formula for 2 variables. Which formula would be dependent on the info contained in table 2 and the way it is displayed.

    Add a helper column in Table 1 called "Target achieved" where you would calculate the sales amount for the person/per month using a "If"/ "Sumifs" combination formula where the display would be either “Achieved” ”Not achieved”

    Then you would add the pivot with these new fields and select the ones you want to see. The pivot would work with data for 1 year only. For several years you would have to add the =year( dimension to it

  5. #5
    Forum Contributor Portuga's Avatar
    Join Date
    02-20-2004
    Location
    Portugal
    MS-Off Ver
    365
    Posts
    852

    Re: i want to see month/date on which target exceeded

    Personally I preffer to have the data consolidated in just 1 sheet and let the pivot do the work once the helper columns are in place but a formula approach is also possible without an array formula:


    For January,after you create your named ranges "Agents", "SalesDate" and "Amount" and considering the name of the agent in A2 and target in B2:

    =IF(SUMPRODUCT(--(Agents=A2);--(MONTH(SalesDate)=1);Amount)>=B2;"Target Achieved";"Target not achieved")

  6. #6
    Registered User
    Join Date
    02-28-2012
    Location
    New Delhi
    MS-Off Ver
    Excel 2007
    Posts
    24

    Re: i want to see month/date on which target exceeded

    Actually i wanted to see the month/date on which target exceeded.

  7. #7
    Forum Contributor Portuga's Avatar
    Join Date
    02-20-2004
    Location
    Portugal
    MS-Off Ver
    365
    Posts
    852

    Re: i want to see month/date on which target exceeded

    Change ">=" to ">"

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1