+ Reply to Thread
Results 1 to 3 of 3

Need a macro to insert text in a cell that already has text.Excel

  1. #1
    go1angel
    Guest

    Need a macro to insert text in a cell that already has text.Excel

    I want a macro that will allow me insert text in a cell where I have placed
    my curser. Sounds easy. Hope it is. Help!

    Sharon

  2. #2
    Tom Ogilvy
    Guest

    Re: Need a macro to insert text in a cell that already has text.Excel

    Sub PlaceText()
    ActiveCell.Value = "ABCD"
    End Sub

    if you mean you are editing a text string in a cell and you want to insert
    text within the text string, then there is no direct support for that. For
    any practical application, macros do not run when you are in edit mode.

    Try copying the text string to add by selecting just the text and doing
    Ctrl+c

    now where your cursor is in the cell where you want it added, do Ctrl+v

    --
    Regards,
    Tom Ogilvy


    "go1angel" <[email protected]> wrote in message
    news:[email protected]...
    > I want a macro that will allow me insert text in a cell where I have

    placed
    > my curser. Sounds easy. Hope it is. Help!
    >
    > Sharon




  3. #3
    go1angel
    Guest

    Re: Need a macro to insert text in a cell that already has text.Ex

    Thanks, that is what I have been doing. But it seemed like an easy thing. But
    I am in edit mode so it won't work then. Thanks for your help.

    Sharon

    "Tom Ogilvy" wrote:

    > Sub PlaceText()
    > ActiveCell.Value = "ABCD"
    > End Sub
    >
    > if you mean you are editing a text string in a cell and you want to insert
    > text within the text string, then there is no direct support for that. For
    > any practical application, macros do not run when you are in edit mode.
    >
    > Try copying the text string to add by selecting just the text and doing
    > Ctrl+c
    >
    > now where your cursor is in the cell where you want it added, do Ctrl+v
    >
    > --
    > Regards,
    > Tom Ogilvy
    >
    >
    > "go1angel" <[email protected]> wrote in message
    > news:[email protected]...
    > > I want a macro that will allow me insert text in a cell where I have

    > placed
    > > my curser. Sounds easy. Hope it is. Help!
    > >
    > > Sharon

    >
    >
    >


+ 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