Closed Thread
Results 1 to 18 of 18

Planned vs Actual Formula

Hybrid View

  1. #1
    Registered User
    Join Date
    11-27-2013
    Location
    Kuala Lumpur, Malaysia
    MS-Off Ver
    Excel 2007
    Posts
    65

    Planned vs Actual Formula

    Hello there,

    Can someone please help me fix the formula in my variance report?

    In my sample template, Person A should be overutilized since his actual hour is greater than than as planned. However, i'm getting an "underutilized" result. I suspect there is something wrong with the formula in the Planned hours column -- IFERROR((VLOOKUP(B3,I13:J14,2,0)*8),"0"). Even if the value is "zero", the formula in Status column take it as Planned (0) is greater than the Actual (32).

    Thanks in advance.
    Attached Files Attached Files

  2. #2
    Forum Guru benishiryo's Avatar
    Join Date
    03-25-2011
    Location
    Singapore
    MS-Off Ver
    Excel 2013
    Posts
    5,156

    Re: Planned vs Actual Formula

    hi juan. do not use the double quotes for numbers:
    =IFERROR((VLOOKUP(B3,I13:J14,2,0)*8),"0")

    that makes it a text. and text are regarded as greater than numbers in excel. try:
    ="a">10000

    you can also remove the additional brackets & lock the range so that you can copy down:
    =IFERROR(VLOOKUP(B3,$I$13:$J$14,2,0)*8,0)

    Thanks, if you have clicked on the * and added our rep.

    If you're satisfied with the answer, click Thread Tools above your first post, select "Mark your thread as Solved".

    "Contentment is not the fulfillment of what you want, but the realization of what you already have."


    Tips & Tutorials I Compiled | How to Get Quick & Good Answers

  3. #3
    Registered User
    Join Date
    11-27-2013
    Location
    Kuala Lumpur, Malaysia
    MS-Off Ver
    Excel 2007
    Posts
    65

    Re: Planned vs Actual Formula

    Thanks for the help, Dude!!!

  4. #4
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,047

    Re: Planned vs Actual Formula

    Based on your last post it seems that you are satisfied with the solution(s) you've received but you haven't marked your thread as SOLVED. If your problem has not been solved you can use Thread Tools (located above your first post) and choose "Mark this thread as unsolved".
    Thanks.

    Also, as a relatively new member of the forum, you may not be aware that you can thank those who have helped you by clicking the small star icon located in the lower left corner of the post in which the help was given. By doing so you can add to the reputation(s) of those who helped.
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  5. #5
    Registered User
    Join Date
    11-27-2013
    Location
    Kuala Lumpur, Malaysia
    MS-Off Ver
    Excel 2007
    Posts
    65

    Re: Planned vs Actual Formula

    Apologies I am not really aware of that features.

    Anyway, I already clicked the star icon to say thank you for the helped provided by benishiryo.

    Before I mark this thread close, I would like to seek assistance in creating a single formula for my summary tab applicable to all months. In my sample, I want to show the performance of Bruce Wayne in every project he worked for June and July so that we will know if he was properly utilised or not. Would that be possible?

    Thank you again in advance.
    Attached Files Attached Files

  6. #6
    Registered User
    Join Date
    11-27-2013
    Location
    Kuala Lumpur, Malaysia
    MS-Off Ver
    Excel 2007
    Posts
    65

    Re: Planned vs Actual Formula

    Apologies I am not really aware of that features.

    Anyway, I already clicked the star icon to commend benishiryo's helped

    Before I mark this thread close, I would like to seek assistance in creating a single formula for my summary tab applicable to all months. In my sample, I want to show the performance of Bruce Wayne in every project he worked for June and July so that we will know if he was properly utilised or not. Would that be possible?

    Thank you again in advance.
    Attached Files Attached Files

  7. #7
    Forum Expert
    Join Date
    03-28-2014
    Location
    Hyderabad,India
    MS-Off Ver
    Office 365
    Posts
    1,899

    Re: Planned vs Actual Formula

    Hi,

    Find the updated sheet with formula in Summary sheet some changes are made in summary sheet.

    Punnam
    Attached Files Attached Files

  8. #8
    Registered User
    Join Date
    11-27-2013
    Location
    Kuala Lumpur, Malaysia
    MS-Off Ver
    Excel 2007
    Posts
    65

    Re: Planned vs Actual Formula

    Hi Punnam,

    Tried to use the formula you created in my sample but I am getting an #NAME? error.

    Maybe the formula doesn't suit in the original template. I attached the original template hope that you can help me create a formula applicable in the file. I wish the formula can show the utilisation in the Summary by deducting the plan effort in the actual time (Actual Effort tab) worked by the resource every month.

    Thanks!!!
    Attached Files Attached Files

  9. #9
    Forum Expert
    Join Date
    03-28-2014
    Location
    Hyderabad,India
    MS-Off Ver
    Office 365
    Posts
    1,899

    Re: Planned vs Actual Formula

    Hi,

    Find the updated file with necessary changes please check the correctness of the data manually & Conform the same.

    Punnam
    Attached Files Attached Files

  10. #10
    Registered User
    Join Date
    11-27-2013
    Location
    Kuala Lumpur, Malaysia
    MS-Off Ver
    Excel 2007
    Posts
    65

    Re: Planned vs Actual Formula

    This is great....

    Though we need some tweaks.

    > Values in plan effort is in days and should be converted to hours (multiplied to 8 hours).
    > Is there a way we can avoid showing #VALUE!?
    > Black Widow utilisation doesn't match as expected. For June, Black Widow has been allocated for Project YA for total hours of 24 (3 days x 8 hours - for week June 30) and worked for the same project for 40 hours. So, variance that should reflect is 16 hours which is overutilised.

  11. #11
    Forum Expert
    Join Date
    03-28-2014
    Location
    Hyderabad,India
    MS-Off Ver
    Office 365
    Posts
    1,899

    Re: Planned vs Actual Formula

    Hi,
    1) Multiplication with 8 hour in a day for the plan effort in summary sheet
    2) #Value are generated due to data in Plan Effort sheet i observed that some cells are showing blank but having " " (i.e (Space) i have to be identified and remove manually by Replace command .
    3) I have corrected the formula to match u r requirement .
    Punnam
    Attached Files Attached Files

  12. #12
    Registered User
    Join Date
    11-27-2013
    Location
    Kuala Lumpur, Malaysia
    MS-Off Ver
    Excel 2007
    Posts
    65

    Re: Planned vs Actual Formula

    Hi Punnam,

    I mapped the formula on my template it looks great though there are still cells that showing an #VALUE!. I really don't know what and how to fix it. Sorry to bother but can you please help me again to perfect the formula.

    Also, I observed wrong value for Bruce Wayne for June under Project 10. His allocation was 40 hours and the actual work was 16 hours (if you sum up the Project time (col C) of Bruce for June 30) but we are getting 32 hours (see attached).

    Again, thank you in advance for the help.
    Attached Files Attached Files

  13. #13
    Forum Expert
    Join Date
    03-28-2014
    Location
    Hyderabad,India
    MS-Off Ver
    Office 365
    Posts
    1,899

    Re: Planned vs Actual Formula

    Hi,

    Please check the Cell H18,J18 & AH 25 of plan effort Sheet they are not having any number or Symbol or Character this can be due importing a data from software or eels . you need to identify them make sure they are deleted . to avoid #Value.
    Delete the Above said cell content and check in summary sheet u will not get #value error .
    I have made changes in formula also. Check the result

    Punnam
    Attached Files Attached Files

  14. #14
    Registered User
    Join Date
    11-27-2013
    Location
    Kuala Lumpur, Malaysia
    MS-Off Ver
    Excel 2007
    Posts
    65

    Re: Planned vs Actual Formula

    Thanks for all your help, Punnam.

    One last thing, I want to change the formula to this for larger data in Actual effort sheet:

    SUMPRODUCT(('Actual Effort'!$B:$B=$E11)*('Actual Effort'!$E:$E=$F11)*((TEXT('Actual Effort'!$F:$F,"m-YY")=TEXT(Summary!G$3,"m-yy"))*('Actual Effort'!$C:$C)))

    Unfortunately (again), I'm getting this error #Value

  15. #15
    Forum Expert
    Join Date
    03-28-2014
    Location
    Hyderabad,India
    MS-Off Ver
    Office 365
    Posts
    1,899

    Re: Planned vs Actual Formula

    HI,

    I have checked the formula as it is array related it is taking too munch time for calculation and will be very difficult yo use the workbook.
    c:c 1048576 Row
    So better updated the range manually

    2) U can ask help Preparation of VBA Code
    Punnam

  16. #16
    Registered User
    Join Date
    07-04-2014
    Location
    Dubai
    MS-Off Ver
    2007
    Posts
    10

    Re: Planned vs Actual Formula

    Hello,
    I have a question in regards to this subject, can you please help me?

    what is the difference btw Planned/Actual and Actual/Planned?

    does each one have a different meaning when calculating?

    Thanks

  17. #17
    Registered User
    Join Date
    07-04-2014
    Location
    Dubai
    MS-Off Ver
    2007
    Posts
    10

    Re: Planned vs Actual Formula

    Hello,
    I have a question in regards to this subject, can you please help me?

    what is the difference btw Planned/Actual and Actual/Planned?

    does each one have a different meaning when calculating?

    Thanks

  18. #18
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2503 (Windows 11 Home 24H2 64-bit)
    Posts
    90,309

    Re: Planned vs Actual Formula

    Administrative Note:

    We are happy to help, however whilst you feel your request is similar to this thread, experience has shown that things soon get confusing when answers refer to particular cells/ranges/sheets which are unique to your post and not relevant to the original.

    Please see Forum Rule #4 about hijacking and start a new thread for your query.

    If you are not familiar with how to start a new thread see the FAQ: How to start a new thread
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help. It's a universal courtesy.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    NB:
    as a Moderator, I never accept friendship requests.
    Forum Rules (updated August 2023): please read them here.

Closed Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. A Schedule with Planned, Actual, Days +/- and Future Dates
    By jm90045 in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 04-28-2013, 08:16 PM
  2. Traffic Light for Hours / Days actual vs planned
    By JPD in forum Excel General
    Replies: 4
    Last Post: 06-08-2011, 10:21 AM
  3. Planned vs. Actual Gantt
    By mycon73 in forum Excel Charting & Pivots
    Replies: 1
    Last Post: 05-22-2011, 01:10 AM
  4. Excel 2007 : Gathering Planned and Actual hours
    By Kburtt in forum Excel General
    Replies: 0
    Last Post: 02-28-2011, 10:42 PM
  5. [SOLVED] Conditional Formating planned VS actual date
    By rhatala@stny.rr.com in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 03-02-2005, 04:06 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