+ Reply to Thread
Results 1 to 14 of 14

Formula to calculate daily sales needed to reach a specific target

  1. #1
    Registered User
    Join Date
    09-05-2016
    Location
    cairo
    MS-Off Ver
    Office 2016
    Posts
    39

    Formula to calculate daily sales needed to reach a specific target

    Hello everyone,

    in the attached XLS link, you will find our achieved sales of this month per day and date. our sales peak is at it's highest from Sun to Thu. and we go down on Fri and start going back up on Sat.

    https://onedrive.live.com/edit.aspx?...!133&app=Excel


    what i'm hoping you can help me with is two things:

    1- create a fourmla that can tell what is the needed sales number on each of the 3 time periods i mentioned above. Sun to thu, Fri and Sat. and to take into account past performance. for example, since we go down on Fri so the expected sales number should be lower than what we usually get from Sun to Thu. same goes fro Sat.

    2- this formula should update it self automatically as each day goes by and calculate the new needed numbers to reach our final month target.

    in the main work XLS, the sales number is auto populated. i just need something that can tell me the daily target needed based on ongoing performance.

    Thanks.
    Last edited by smsmworld; 12-15-2016 at 04:14 AM.

  2. #2
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,208

    Re: Formula to calculate daily sales needed to reach a specific target

    Please post file to the forum as many members will not visit file-hosting sites.

    Attach a sample workbook.

    Make sure there is just enough data to demonstrate your need. Include a BEFORE sheet and an AFTER sheet in the workbook if needed to show the process you're trying to complete or automate. Make sure your desired results are shown, mock them up manually if necessary.

    Remember to desensitize the data.

    Click on GO ADVANCED and then scroll down to Manage Attachments to open the upload window.

  3. #3
    Registered User
    Join Date
    09-05-2016
    Location
    cairo
    MS-Off Ver
    Office 2016
    Posts
    39

    Re: Formula to calculate daily sales needed to reach a specific target

    Thanks a lot for the tips. i've attached the file here. and i hope it's clear enough for the request.
    Attached Files Attached Files

  4. #4
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,208

    Re: Formula to calculate daily sales needed to reach a specific target

    See attached:

    I used the following logic:

    Calculated Sales to date for each of the 3 periods and used the proportion of each period to calculate the future sales.

    in D2 down ... day of week (Sunday=1)

    =WEEKDAY(B2,1)

    in G2 (sales needed to meet target)

    =F$2-SUM($C$2:$C$32)

    in H3 Sles to date for Sun-Thu

    =SUMIF($D$2:$D$32,"<=" &5,$C$2:$C$32)

    In I3

    =SUMIF($D$2:$D$32,"=" &6,$C$2:$C$32)

    in J3

    =SUMIF($D$2:$D$32,"=" &7,$C$2:$C$32)

    in H2

    =ROUND($H$3/$C$33)*$G$2,0)

    in I2

    =ROUND($I$3/$C$33)*$G$2,0)

    in J3

    =ROUND($J$3/$C$33)*$G$2,0)
    Attached Files Attached Files
    Last edited by JohnTopley; 12-15-2016 at 08:37 AM.

  5. #5
    Registered User
    Join Date
    09-05-2016
    Location
    cairo
    MS-Off Ver
    Office 2016
    Posts
    39

    Re: Formula to calculate daily sales needed to reach a specific target

    Hello,

    thanks so much for your help. is it possible to make the daily needed numbers return results per day and not the total needed in each period. for example, what is the needed number of sales on one Friday?

    Thanks.

  6. #6
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,208

    Re: Formula to calculate daily sales needed to reach a specific target

    Daily Sales

    Sun-Thu

    =ROUND($H2/COUNTIFS($C$2:$C$32,"",$D$2:$D$32,"<" &6),0)

    Fri

    =ROUND($I2/COUNTIFS($C$2:$C$32,"",$D$2:$D$32,6),0)

    Sat

    =ROUND($J2/COUNTIFS($C$2:$C$32,"",$D$2:$D$32,7),0)
    Attached Files Attached Files

  7. #7
    Registered User
    Join Date
    09-05-2016
    Location
    cairo
    MS-Off Ver
    Office 2016
    Posts
    39

    Re: Formula to calculate daily sales needed to reach a specific target

    i maybe getting this the wrong way. The formula on daily sales cells H4,I4 and J4 is supposed to set a daily target for each day of the week till the end of month to reach the final target on cell F2.

    so for example, if i take the numbers you shared in the above sheet and start applying them manually on all days. the final day or two of the month which are Fri 30 and Sat 31 predicted numbers by the formula on cells I4 and J4 should both equal the number on G2, right?

    compare the attached sheet to what you shared to see what i mean. and again thanks a lot for your help in this
    Attached Files Attached Files

  8. #8
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,208

    Re: Formula to calculate daily sales needed to reach a specific target

    The calculations are correct: if you put the appropriate day figures in, then the month total (day 1 to day 31) is 109998 against a target of 110000!!!

  9. #9
    Registered User
    Join Date
    09-05-2016
    Location
    cairo
    MS-Off Ver
    Office 2016
    Posts
    39

    Re: Formula to calculate daily sales needed to reach a specific target

    yes, but how can the last two remaining days of the moth prediction not equal the total needed for the month on G2. this means that we will close the month behind. can you help me understand the formula better?

  10. #10
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,208

    Re: Formula to calculate daily sales needed to reach a specific target

    I have re-looked at your posting and now understand the point you make where the proportions get completely distorted. i am not sure how to handle this (I am no mathematician).

  11. #11
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,208

    Re: Formula to calculate daily sales needed to reach a specific target

    The formula simply takes the sales-to-date and subtracts this figure from the target to give the balance required.

    I then calculate the sales-to-date for Sun-Thu, Fri and Saturday and use these figures to apportion the balance.

    So for example, if Sun-Thu are 60% of sales then 60% of the balance is "allocated" to Sun-Thu. I then calculate the number of Sun-Thu days left to give a daily figure.

    This is repeated for Fri and Sat.

    When we get to situation where there is only (a few) 3 days left i.e Thu, Fri, Sat then this calculation fails.

    The "standard" calculation is to apportion the data equally among ALL days then will not get this distortion.

    So with 3 days left and a balance of 12507 , we would divide this by 3 giving 4169 for each day.

    it is the "bias" to Sun_Thu which causes the problem.

  12. #12
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,208

    Re: Formula to calculate daily sales needed to reach a specific target

    I have looked at using "averages" for each day but to no avail: in this specific case the required future daily sales FAR exceed the current sales volumes so a simple calculation of a single common daily amount will suffice.

    To meet your 110000 target you need daily sales of >3500 which well in excess of current sales.
    Last edited by JohnTopley; 12-15-2016 at 04:12 PM.

  13. #13
    Registered User
    Join Date
    09-05-2016
    Location
    cairo
    MS-Off Ver
    Office 2016
    Posts
    39

    Re: Formula to calculate daily sales needed to reach a specific target

    Thank you so much sir for your efforts. would breaking down Sun-Thu to calculate each day separately, make it easier?

  14. #14
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,208

    Re: Formula to calculate daily sales needed to reach a specific target

    See the table in the attached where every is calculated on a per day basis: note to date you have only reached 20% of your target so reaching your target is extremely unlikely.

    The calculations are the same as previously but on a daily basis.
    Attached Files Attached Files

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Daily Sales Target Sheet
    By geejaysimp in forum Excel General
    Replies: 11
    Last Post: 10-06-2022, 04:44 AM
  2. [SOLVED] Looking for a way to calculate items needed to reach target %
    By UNCDave13 in forum Excel General
    Replies: 13
    Last Post: 01-24-2017, 02:05 AM
  3. Replies: 1
    Last Post: 07-20-2015, 09:49 AM
  4. Formula regarding daily target sales calculation
    By jasonschafer in forum Excel General
    Replies: 1
    Last Post: 01-20-2015, 09:32 AM
  5. Finding a Daily Average needed to reach a Monthly goal
    By photoant in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 11-02-2014, 09:19 PM
  6. Replies: 2
    Last Post: 10-17-2013, 11:52 AM
  7. [SOLVED] Daily AVG needed to reach monthly goal - Example Attached
    By rufus40444 in forum Excel - New Users/Basics
    Replies: 3
    Last Post: 02-20-2013, 02:47 PM

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