+ Reply to Thread
Results 1 to 19 of 19

NEED HELP! T_T - Automatic update value when new data is filled at adjacent column

  1. #1
    Registered User
    Join Date
    02-12-2015
    Location
    malaysia
    MS-Off Ver
    2007
    Posts
    10

    Question NEED HELP! T_T - Automatic update value when new data is filled at adjacent column

    guys i need help!

    Let say i have target value at column C2 which is 1.18.
    Then from column D1 to O1 is months from Aug 14 until Jul 15.
    So i have column Q2 which is my current month result which is pass or fail (need to put smiley face - happy or sad) when compared to my target value.

    So from column D2 to O2 is value for each month. Let say currently, i only have value for D2 (aug 14) which is 1.2 - this will give happy face since it is above the target when compared with column C2.

    But, if i have new value to input which is in E2 (sep 14) let say 0.8, how my result in column Q2 will update the result based on new data input on adjacent column - which the result will be sad face since its below the target (automatic update).

    Thank you

  2. #2
    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
    52,942

    Re: NEED HELP! T_T - Automatic update value when new data is filled at adjacent column

    Hi, welcome to the forum

    To best describe or illustrate your problem you would be better off attaching a dummy workbook. The workbook should contain the same structure and some dummy data of the same type as the type you have in your real workbook - so, if a cell contains numbers & letters in this format abc-123 then that should be reflected in the dummy workbook.

    To attach a file to your post,
    click advanced (next to quick post),
    scroll down until you see "manage file",
    click that and select "add files" (top right corner).
    click "select files" find your file, click "open" click "upload" click 'done" bottom right. click "submit reply"

    Once the upload is completed the file name will appear below the input boxes in this window.
    You can then close the window to return to the new post screen.
    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

  3. #3
    Registered User
    Join Date
    02-12-2015
    Location
    malaysia
    MS-Off Ver
    2007
    Posts
    10

    Re: NEED HELP! T_T - Automatic update value when new data is filled at adjacent column

    Example.xlsx

    This is the attachment example

  4. #4
    Registered User
    Join Date
    02-12-2015
    Location
    malaysia
    MS-Off Ver
    2007
    Posts
    10

    Re: NEED HELP! T_T - Automatic update value when new data is filled at adjacent column

    Thank you.
    I have included the attachment file

  5. #5
    Registered User
    Join Date
    02-12-2015
    Location
    malaysia
    MS-Off Ver
    2007
    Posts
    10

    Re: NEED HELP! T_T - Automatic update value when new data is filled at adjacent column

    Anuyone can help me? im stuck..i dont know how the result can be updated when new value is input in adjacent column...

  6. #6
    Forum Moderator
    Join Date
    01-21-2014
    Location
    St. Joseph, Illinois U.S.A.
    MS-Off Ver
    Office 365 v 2404
    Posts
    13,406

    Re: NEED HELP! T_T - Automatic update value when new data is filled at adjacent column

    Try this formula in Q3:
    Formula: copy to clipboard
    Please Login or Register  to view this content.
    Does this do what you want?

  7. #7
    Registered User
    Join Date
    02-12-2015
    Location
    malaysia
    MS-Off Ver
    2007
    Posts
    10

    Re: NEED HELP! T_T - Automatic update value when new data is filled at adjacent column

    Quote Originally Posted by FlameRetired View Post
    Try this formula in Q3:
    Formula: copy to clipboard
    Please Login or Register  to view this content.
    Does this do what you want?

    Thank you. what if let say i want to put flat face if the value is 90% meet the target? can you help me? so there are additional condition for example.

    Thanks

  8. #8
    Forum Contributor
    Join Date
    08-14-2013
    Location
    Here and there
    MS-Off Ver
    Excel 2010
    Posts
    376

    Re: NEED HELP! T_T - Automatic update value when new data is filled at adjacent column

    HAPPY FACE.xlsx

    Hi, have a look at this example. I added data in an extra row (row 3) and then completed the required task. If you didn't want to see the data in row 3 you could always hide this row.

    Cheers

  9. #9
    Forum Contributor
    Join Date
    08-14-2013
    Location
    Here and there
    MS-Off Ver
    Excel 2010
    Posts
    376

    Re: NEED HELP! T_T - Automatic update value when new data is filled at adjacent column

    Well done FlameRetired - you cam up with a good solution while I was working on it!

  10. #10
    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
    52,942

    Re: NEED HELP! T_T - Automatic update value when new data is filled at adjacent column

    Try this...
    =IF(INDEX($D$3:$O$3,MATCH(99^99,$D$3:$O$3))=C3,"J",IF(OR(INDEX($D$3:$O$3,MATCH(99^99,$D$3:$O$3))>=C3*0.9,INDEX($D$3:$O$3,MATCH(99^99,$D$3:$O$3))<=C3*1.1),"K","L"))

    This assumes that if you exactly match goal, you get smiley, if you get +90 -110, you get straight else you get frown

  11. #11
    Forum Moderator
    Join Date
    01-21-2014
    Location
    St. Joseph, Illinois U.S.A.
    MS-Off Ver
    Office 365 v 2404
    Posts
    13,406

    Re: NEED HELP! T_T - Automatic update value when new data is filled at adjacent column

    Quote Originally Posted by Ursul View Post
    Well done FlameRetired - you cam up with a good solution while I was working on it!
    Thanks for the feedback.

  12. #12
    Registered User
    Join Date
    02-12-2015
    Location
    malaysia
    MS-Off Ver
    2007
    Posts
    10

    Re: NEED HELP! T_T - Automatic update value when new data is filled at adjacent column

    Quote Originally Posted by FDibbins View Post
    Try this...
    =IF(INDEX($D$3:$O$3,MATCH(99^99,$D$3:$O$3))=C3,"J",IF(OR(INDEX($D$3:$O$3,MATCH(99^99,$D$3:$O$3))>=C3*0.9,INDEX($D$3:$O$3,MATCH(99^99,$D$3:$O$3))<=C3*1.1),"K","L"))

    This assumes that if you exactly match goal, you get smiley, if you get +90 -110, you get straight else you get frown
    yess! thanks alot!! IT REALLY HELPS ME. THANK YOU SO MUCH!!

  13. #13
    Forum Moderator
    Join Date
    01-21-2014
    Location
    St. Joseph, Illinois U.S.A.
    MS-Off Ver
    Office 365 v 2404
    Posts
    13,406

    Re: NEED HELP! T_T - Automatic update value when new data is filled at adjacent column

    Thanks for the rep!

  14. #14
    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
    52,942

    Re: NEED HELP! T_T - Automatic update value when new data is filled at adjacent column

    Happy to help, thanks for the feedback

  15. #15
    Registered User
    Join Date
    02-12-2015
    Location
    malaysia
    MS-Off Ver
    2007
    Posts
    10

    Re: NEED HELP! T_T - Automatic update value when new data is filled at adjacent column

    Quote Originally Posted by FDibbins View Post
    Happy to help, thanks for the feedback
    No worries.
    By the way, do you have any idea how I can colour the smilye face? Happy-green straight -yellow frown - red..

    I tried to use conditional formatting and the smiley face was coloured (only outline -eyes, mouth and circle was green but the face is white background). The thing that i want to get is the smiley face has black color for eyes, mouth and circle outline but fill with green colour for face. Do you get what i meant? is it possible?

    Thanks

  16. #16
    Forum Moderator
    Join Date
    01-21-2014
    Location
    St. Joseph, Illinois U.S.A.
    MS-Off Ver
    Office 365 v 2404
    Posts
    13,406

    Re: NEED HELP! T_T - Automatic update value when new data is filled at adjacent column

    I tried fooling around with copy and paste as picture.......got some interesting effects but nothing like you described......it also stops responding to the formula. You will probably have to do some lengthy research on this one if it can be done at all.

  17. #17
    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
    52,942

    Re: NEED HELP! T_T - Automatic update value when new data is filled at adjacent column

    Yes, I was not able to get what you wanted either TRied inserting special characters, but that didnt work either

  18. #18
    Registered User
    Join Date
    02-12-2015
    Location
    malaysia
    MS-Off Ver
    2007
    Posts
    10

    Re: NEED HELP! T_T - Automatic update value when new data is filled at adjacent column

    Quote Originally Posted by FlameRetired View Post
    I tried fooling around with copy and paste as picture.......got some interesting effects but nothing like you described......it also stops responding to the formula. You will probably have to do some lengthy research on this one if it can be done at all.
    Yea same with me. btw its ok. thanks!

  19. #19
    Registered User
    Join Date
    02-12-2015
    Location
    malaysia
    MS-Off Ver
    2007
    Posts
    10

    Re: NEED HELP! T_T - Automatic update value when new data is filled at adjacent column

    Quote Originally Posted by FDibbins View Post
    Yes, I was not able to get what you wanted either TRied inserting special characters, but that didnt work either
    yea me too. i tried but still cant get it. btw thanks! =D

+ 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. Macro to enter data in next column if previous column is filled.
    By NIKNIKNIK in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 05-15-2014, 11:26 AM
  2. VBA Code to copy data from last filled column and paste to the next available column.
    By Pavman2473 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 04-09-2012, 09:07 PM
  3. Automatic Update of Sort Key Column in Excel VBA
    By makku in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 11-03-2011, 04:56 AM
  4. Automatic update data
    By ali husain in forum Excel General
    Replies: 5
    Last Post: 12-07-2008, 11:12 AM
  5. automatic update of data
    By tess457 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 02-18-2005, 12:23 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