+ Reply to Thread
Results 1 to 24 of 24

Automatically transfer text from one cell to another cell

Hybrid View

  1. #1
    Registered User
    Join Date
    10-21-2013
    Location
    St. Charles, MO
    MS-Off Ver
    Excel 2011
    Posts
    16

    Automatically transfer text from one cell to another cell

    I need help with transferring text from one cell to another. I can do it with numbers but I am having a hard time doing it with text. Here's an example of what I need:

    In CELL A1 I want to insert text and then have whatever I type to automatically transfer
    to CELL D25.

    I know this is easy for you guys, but it's kicking my butt. I appreciate your help.

    Greg

  2. #2
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: Automatically transfer text from one cell to another cell

    In D25
    =IF(LEN(A1)>0, A1, "")
    Something like that?
    ChemistB
    My 2?

    substitute commas with semi-colons if your region settings requires
    Don't forget to mark threads as "Solved" (Edit First post>Advanced>Change Prefix)
    If I helped, Don't forget to add to my reputation (click on the little star at bottom of this post)

    Forum Rules: How to use code tags, mark a thread solved, and keep yourself out of trouble

  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,508

    Re: Automatically transfer text from one cell to another cell

    I'm sure it must be more complex than this but from what you wrote, I'd think that simply putting =A1 in cell D25 would do it for you wouldn't it?
    Make contributors happy, click on the "* Add Reputation" as a way to say thank you.
    Sam Capricci

  4. #4
    Registered User
    Join Date
    10-21-2013
    Location
    St. Charles, MO
    MS-Off Ver
    Excel 2011
    Posts
    16

    Re: Automatically transfer text from one cell to another cell

    YES. I'm an idiot. Thanks.

  5. #5
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: Automatically transfer text from one cell to another cell

    =A1 will result in zeros when it's blank.

  6. #6
    Registered User
    Join Date
    10-21-2013
    Location
    St. Charles, MO
    MS-Off Ver
    Excel 2011
    Posts
    16

    Re: Automatically transfer text from one cell to another cell

    I'm sorry to throw a monkey wrench into this, but I failed to mention that the cell A1 is on SHEET 2 and I want it to go to SHEET 1, CELL D25. Does that make sense. I'm sorry to bother you guys. I'm learning...

  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,508

    Re: Automatically transfer text from one cell to another cell

    Ok, to address what ChemistB wrote, the formula would be =if('Sheet2'!A1="","",'Sheet2'!A1) in sheet 1 cell D25.
    As you write it, start in sheet1 D25, write =if( then go to sheet2 A1 and add ="","", then click on sheet2 A1 again the close parens. it will write itself.

  8. #8
    Registered User
    Join Date
    10-21-2013
    Location
    St. Charles, MO
    MS-Off Ver
    Excel 2011
    Posts
    16

    Re: Automatically transfer text from one cell to another cell

    Thanks to everyone for the help. I appreciate it... and so does my boss.

  9. #9
    Registered User
    Join Date
    04-30-2014
    Location
    NY
    MS-Off Ver
    Excel 2007
    Posts
    14

    Re: Automatically transfer text from one cell to another cell

    I'm new here, so Hello!
    Rather than create another topic altogether, this example is very close to what I want to do so thank you already... but what if I didn't want the data to repeat on sheet1?
    In other words, one of my sheets is a running list of orders, but on the other sheet I just want the item and vendor to appear once, not every single instance of the same item.

    Hope that makes sense, and very nice forum you have here!

    _

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

    Re: Automatically transfer text from one cell to another cell

    Gskully, it is against forum rule #2 to post your question on another member's thread.

    2. Don't post a question in the thread of another member -- start your own. If you feel it's particularly relevant, provide a link to the other thread. You may include up to 3 links to other URLs in a single post, no more, so only link to the relevant pages.

    So don't be shy, start your own post and your issue will get direct attention and be tailored to what your problem is. Thanks and welcome to the forum.

  11. #11
    Registered User
    Join Date
    10-21-2013
    Location
    St. Charles, MO
    MS-Off Ver
    Excel 2011
    Posts
    16

    Re: Automatically transfer text from one cell to another cell

    Okay, so I'm back. I'm trying to have CELL: E-10 on SHEET 5 go to CELL: F-4 on SHEET 4. It will be text. I'm pretty much an idiot but would like to learn at least a few things. I appreciate your time and help. thanks.

  12. #12
    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,508

    Re: Automatically transfer text from one cell to another cell

    so, put your cursor in sheet4 cell F4, write =if(Sheet5!E10<>"",Sheet5!E10,"") and that should do it for you.
    what that is saying is that, in sheet4 cell F4, if there is a value in sheet5 cell E10, return that value, otherwise leave this cell (F4) blank. Hope that helps.

  13. #13
    Registered User
    Join Date
    10-21-2013
    Location
    St. Charles, MO
    MS-Off Ver
    Excel 2011
    Posts
    16

    Re: Automatically transfer text from one cell to another cell

    Sambo kid,

    Thanks for your help. I tried applying the formula and it didn't work for me. I tried to upload the actual Excel spreadsheet to this forum, but it wouldn't accept it; it might be too large. I'm not sure. If you feel comfortable with it, please send me an email to [email protected] and I will email you the document. I know this seems kind of shady, but I'm being sincere with my problems and will not do anything but what I'm saying.

  14. #14
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: Automatically transfer text from one cell to another cell

    When you say it doesn't work, what does happen? That would give a clue as to what is wrong.

  15. #15
    Registered User
    Join Date
    10-21-2013
    Location
    St. Charles, MO
    MS-Off Ver
    Excel 2011
    Posts
    16

    Re: Automatically transfer text from one cell to another cell

    When I do insert the formula it says, "Invalid Cell Reference."

  16. #16
    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,508

    Re: Automatically transfer text from one cell to another cell

    well, I wrote this as a sample formula in sheet2 of an open spreadsheet I have and it works for me.
    =IF(Sheet1!A2<>"",Sheet1!A2,"") So I would think that if you substitute your cell references for mine it should work for you.

  17. #17
    Registered User
    Join Date
    10-21-2013
    Location
    St. Charles, MO
    MS-Off Ver
    Excel 2011
    Posts
    16

    Re: Automatically transfer text from one cell to another cell

    I appreciate everyone's help, but I'm having a bad case of operator error going on here. I'm not good at this. I'm good at cutting glass. If anyone can provide me an email to send it to or send me an email, I would appreciate it. [email protected]

    Again, I realize that asking for email addresses on the internet is shady, but I'm not being shady. I'm just an idiot.

  18. #18
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: Automatically transfer text from one cell to another cell

    If you post the formula that you are trying to enter into your sheet, I will tell you what is wrong with it. If you put a ' in front of your formula as you are typing it, it will treat it as text and not a formula and won't give you an error message.

  19. #19
    Registered User
    Join Date
    10-21-2013
    Location
    St. Charles, MO
    MS-Off Ver
    Excel 2011
    Posts
    16

    Re: Automatically transfer text from one cell to another cell

    My SHEET 5 is labelled 38 COVER. My SHEET 4 is labelled 38 DRAW.

    Here's what my brain tells me to insert based upon the help I've received:
    =IF(38 COVER!E10<>"",38 DRAW!F4,"")

  20. #20
    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,508

    Re: Automatically transfer text from one cell to another cell

    an if then statement is saying, if something exists, then do this, otherwise do that. so you want to return the value in E10 unless it is blank, then if it is blank leave this cell (F4) blank.

  21. #21
    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,508

    Re: Automatically transfer text from one cell to another cell

    should say =IF(38 COVER!E10<>"",38 COVER!E10,"")
    you want to return the value in E10 and if that cell is blank then leave the cell (F4) blank.

  22. #22
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: Automatically transfer text from one cell to another cell

    you need to put the sheet names in single quotes (') also since there are spaces in them

    should say =IF('38 COVER'!E10<>"",'38 COVER'!E10,"")

  23. #23
    Registered User
    Join Date
    10-21-2013
    Location
    St. Charles, MO
    MS-Off Ver
    Excel 2011
    Posts
    16

    Re: Automatically transfer text from one cell to another cell

    ChemistB, you made it happen. I appreciate it and I apologize for taking so much time. Greg

  24. #24
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: Automatically transfer text from one cell to another cell

    Glad we could help.

+ 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. Need help to automatically transfer cell info to another sheet
    By sarge4u in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 04-19-2013, 01:18 AM
  2. Transfer text from another cell
    By COGICPENNY in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 07-26-2011, 09:23 PM
  3. Automatically transfer cell contents
    By Jesse in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 06-28-2006, 11:40 AM
  4. Automatically transfer cell contents
    By metaltech in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 06-28-2006, 10:10 AM
  5. [SOLVED] Can data from one ws transfer to another IF cell has text?
    By Tom Hayakawa in forum Excel Formulas & Functions
    Replies: 9
    Last Post: 09-06-2005, 04:05 AM

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