+ Reply to Thread
Results 1 to 6 of 6

type data in one cell, it also appears in another

  1. #1
    Registered User
    Join Date
    10-19-2012
    Location
    midatlantic
    MS-Off Ver
    Excel 2003
    Posts
    6

    type data in one cell, it also appears in another

    Hello, I would like to use a formula where when a 1 is typed into one cell, a 1 also appears in another cell.
    Example, type 1 into any of cells A1, A2, A3, or A4, and a 1 will also appear in cell A5.

    I am not sure if this is called conditional formatting but I don't think it is very complex. I am still new to working with formulas other than =sum(). I am excited to learn other forumlas so thank you for the helP!

    Solved, thank you!
    Last edited by OCcat; 10-20-2012 at 11:19 PM.

  2. #2
    Forum Expert
    Join Date
    09-01-2012
    Location
    Norway
    MS-Off Ver
    Office 365
    Posts
    2,844

    Re: type data in one cell, it also appears in another

    I played around with some formulas here. The result is not impressive but depending on your needs it could be adequate.
    Attached Files Attached Files
    <----- If you were helped by my posts you can say "Thank you" by clicking the star symbol down to the left

    If the problem is solved, finish of the thread by clicking SOLVED under Thread Tools
    I don't wish to leave you with no answer, yet I sometimes miss posts. If you feel I forgot you, remind me with a PM or just bump the thread.

  3. #3
    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,939

    Re: type data in one cell, it also appears in another

    2 different versions...

    =IF(OR(A1=1,A2=1,A3=1,A4=1),A1,"") this will give you the value of A1 if 1 is in any of the 4 cells

    =IF(A1=1,A1,IF(A2=1,A2,IF(A3=1,A3,IF(A4=1,A4,"")))) this will put the value of any of the cells into A1
    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

  4. #4
    Forum Expert Cutter's Avatar
    Join Date
    05-24-2004
    Location
    Ontario,Canada
    MS-Off Ver
    Excel 2010
    Posts
    6,451

    Re: type data in one cell, it also appears in another

    Or

    =IF(COUNTIF(A1:A4,1),1,"")

  5. #5
    Registered User
    Join Date
    10-19-2012
    Location
    midatlantic
    MS-Off Ver
    Excel 2003
    Posts
    6

    Re: type data in one cell, it also appears in another

    Thank you everyone for this help. It works and does exactly what I want, but having this formula messes up another formula that was dependent upon some of the data that is now being calculated.
    I'm going to mark this as solved because you guys got me exactly what I asked for, thank you SO MUCH!
    Last edited by OCcat; 10-20-2012 at 11:19 PM.

  6. #6
    Forum Expert Cutter's Avatar
    Join Date
    05-24-2004
    Location
    Ontario,Canada
    MS-Off Ver
    Excel 2010
    Posts
    6,451

    Re: type data in one cell, it also appears in another

    You're welcome. You didn't properly mark your thread as SOLVED so I'll do it for you. (You should have clicked on the Thread Tools button above your initial post and from the drop down selected "Mark this thread as solved".)

+ 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