Closed Thread
Results 1 to 12 of 12

How to make one cell affect another?

  1. #1
    Registered User
    Join Date
    05-04-2015
    Location
    Reading, England
    MS-Off Ver
    2013
    Posts
    5

    How to make one cell affect another?

    Hi all,

    I have what is probably a very simple problem! I need to enter a numerical value in one cell which depending on if it's between 1-3, 4-10 or 11-15 will populate another cell to say either low, moderate or high.

    I'm very much a newbie to formulas so I'd appreciate it if someone could tell me how to do this please? I use Office 2013.

    Thank you in advance

  2. #2
    Forum Expert Sam Capricci's Avatar
    Join Date
    06-14-2012
    Location
    Palm Harbor, Florida
    MS-Off Ver
    16.84 for Mac MS 365
    Posts
    8,501

    Re: How to make one cell affect another?

    one way would be =if(and(a2>0,a2<4),"low",if(and(a2>3,a2<11),"moderate","high"))
    Make contributors happy, click on the "* Add Reputation" as a way to say thank you.
    Sam Capricci

  3. #3
    Forum Expert Sam Capricci's Avatar
    Join Date
    06-14-2012
    Location
    Palm Harbor, Florida
    MS-Off Ver
    16.84 for Mac MS 365
    Posts
    8,501

    Re: How to make one cell affect another?

    another one you could use is =(LOOKUP(A1,{0,3,10},{"low","moderate","high"}))

  4. #4
    Forum Expert NeedForExcel's Avatar
    Join Date
    03-16-2013
    Location
    Pune, India
    MS-Off Ver
    Excel 2016:2019, MS 365
    Posts
    3,873

    Re: How to make one cell affect another?

    But what happens if the Value is 3.5 or 10.5 etc?

    If the numbers can only be integers, there are multiple ways to solve this..

    Assume your numerical value is in cell A1, then use the below formula in a different cell where you want your answer..

    Please Login or Register  to view this content.
    OR

    Please Login or Register  to view this content.
    Last edited by NeedForExcel; 05-04-2015 at 05:25 AM.
    Cheers!
    Deep Dave

  5. #5
    Forum Guru samba_ravi's Avatar
    Join Date
    07-26-2011
    Location
    Hyderabad, India
    MS-Off Ver
    Excel 2021
    Posts
    8,914

    Re: How to make one cell affect another?

    If you have data in Cell A1
    TRY =LOOKUP(A1,{-100000,1,4,11},{"","Low","Moderate","High"})
    Samba

    Say thanks to those who have helped you by clicking Add Reputation star.

  6. #6
    Registered User
    Join Date
    05-04-2015
    Location
    Reading, England
    MS-Off Ver
    2013
    Posts
    5

    Re: How to make one cell affect another?

    The numbers will always be whole.

    Thanks for the super quick responses!

    I'll be using this formula throughout the entire workbook so hopefully I won't need to manually change the 'A1' every formula to say 'A2,A3,A4 etc?

  7. #7
    Forum Expert Sam Capricci's Avatar
    Join Date
    06-14-2012
    Location
    Palm Harbor, Florida
    MS-Off Ver
    16.84 for Mac MS 365
    Posts
    8,501

    Re: How to make one cell affect another?

    if I understand your last post, if you put either of my formulas in a location then drag down they will automatically change to the next location. So for a formula pointed to A1, if you drag down the formula (little box in the lower right corner of the cell) and drag that down, the formula will change to point to A2, then A3 etc. If you want to lock in the column you make the formula this way $A1, if you want to lock in the row, make the formula A$1, if you want to lock in that cell you make the formula $A$1. Hope that helps.

  8. #8
    Registered User
    Join Date
    05-04-2015
    Location
    Reading, England
    MS-Off Ver
    2013
    Posts
    5

    Re: How to make one cell affect another?

    Thanks all, you've been amazingly helpful in such a short space of time

  9. #9
    Forum Expert Sam Capricci's Avatar
    Join Date
    06-14-2012
    Location
    Palm Harbor, Florida
    MS-Off Ver
    16.84 for Mac MS 365
    Posts
    8,501

    Re: How to make one cell affect another?

    being new to this forum, for housekeeping, if the help you've gotten has solved your issue please take a couple moments and do the following. One, if the issue is solved please mark your post as solved using the thread tools drop down at the top of the post.
    AND, if you are so inclined you can click "* Add Reputation" at the bottom of ANY and ALL of those who've taken the time to help you. It isn't mandatory but it is appreciated.
    It is how we advance on this forum.

  10. #10
    Registered User
    Join Date
    05-04-2015
    Location
    Reading, England
    MS-Off Ver
    2013
    Posts
    5

    Re: How to make one cell affect another?

    no worries, I've added the rep...will close successful now

  11. #11
    Registered User
    Join Date
    04-19-2023
    Location
    South Carolina, USA
    MS-Off Ver
    Microsoft 365 Apps for enterprise
    Posts
    2

    Re: How to make one cell affect another?

    Hello new to excel. I attached a sample spreadsheet. I would like a way to add an issue on the issue tab and it add the the total issues I have for that serial # on the info tab under issues. I would also like when I complete a Issue on the Issue tab that it removes itself from the issue column on the info page. Sorry if this is a lot or confusing but I would greatly appreciate the help. If it cant be done then thanks for trying.
    Attached Files Attached Files

  12. #12
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    81,284

    Re: How to make one cell affect another?

    Administrative Note:

    Welcome to the forum.

    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.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    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. IF(COUNTIF help. Trying to make drop down selection affect data in other cells.
    By James.Norris in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 03-26-2015, 06:55 PM
  2. How to make one cell affect another by adding +1 to it.
    By evicktd in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 12-21-2011, 01:08 PM
  3. Conditional Formatting-Need one cell to affect another
    By billdebw in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 02-25-2009, 10:12 AM
  4. Replies: 3
    Last Post: 07-11-2006, 01:35 PM
  5. How do i make a change in one worksheet affect the others
    By elleblaze in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 03-21-2006, 06:10 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