+ Reply to Thread
Results 1 to 6 of 6

Replacing part of a cell text

  1. #1
    Registered User
    Join Date
    11-27-2005
    Posts
    11

    Replacing part of a cell text

    Hi there!

    I'm working on a macro to automate my project, One thing i need to do now is to replace the numerals in a cell from another cell. For example, in sheet1 C2, i have this numeral 20. I will like this macro to replace sheet3 C2 which contains data such as 11. I want the numeral 11 to be replaced by 20. Hope someone can help with this!

    Another thing is how do i call from excel macro to ask notepad to open up a .xml file? -- solved this part!

    Thanks a lot!
    Last edited by oOpsy; 12-01-2005 at 12:40 AM.

  2. #2
    Gary Keramidas
    Guest

    Re: Replacing part of a cell text

    not knowing how much you have to do, this will solve your example

    Worksheets("sheet3").Range("c2").Value = Worksheets("Sheet1").Range("c2")

    --


    Gary


    "oOpsy" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi there!
    >
    > I'm working on a macro to automate my project, One thing i need to do
    > now is to replace the numerals in a cell from another cell. For
    > example, in sheet1 C2, i have this numeral 20. I will like this macro
    > to replace sheet3 C2 which contains data such as 11. I want the numeral
    > 11 to be replaced by 20. Hope someone can help with this!
    >
    > Another thing is how do i call from excel macro to ask notepad to open
    > up a .xml file?
    >
    > Thanks a lot!
    >
    >
    > --
    > oOpsy
    > ------------------------------------------------------------------------
    > oOpsy's Profile:
    > http://www.excelforum.com/member.php...o&userid=29132
    > View this thread: http://www.excelforum.com/showthread...hreadid=489705
    >




  3. #3
    Registered User
    Join Date
    11-27-2005
    Posts
    11
    Hi Gary!

    Thanks for the code. But sorry that i left out something impt! In sheet3, C2, i have data such as <val>11</val>. I want to replace just the numeral 11 from the numeral 20 which i copy from Sheet 1 C2. Is that possible? So that in the end, sheet3 C2 will display as <val>20</val>

    Thanks!

  4. #4
    Gary Keramidas
    Guest

    Re: Replacing part of a cell text

    try this

    Sub test2()
    Worksheets("sheet3").Range("c2").Value = _
    Replace(Worksheets("sheet3").Range("c2"), "11", _
    Worksheets("sheet1").Range("c2").Value)
    End Sub


    --


    Gary


    "oOpsy" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi Gary!
    >
    > Thanks for the code. But sorry that i left out something impt! In
    > sheet3, C2, i have data such as <val>11</val>. I want to replace just
    > the numeral 11 from the numeral 20 which i copy from Sheet 1 C2. Is
    > that possible? So that in the end, sheet3 C2 will display as
    > <val>20</val>
    >
    > Thanks!
    >
    >
    > --
    > oOpsy
    > ------------------------------------------------------------------------
    > oOpsy's Profile:
    > http://www.excelforum.com/member.php...o&userid=29132
    > View this thread: http://www.excelforum.com/showthread...hreadid=489705
    >




  5. #5
    Gary Keramidas
    Guest

    Re: Replacing part of a cell text

    or, if the 11 can be any 2 digit number:

    Sub test3()
    Worksheets("sheet3").Range("c2").Value = _
    Replace(Worksheets("sheet3").Range("c2"), _
    Mid(Worksheets("sheet3").Range("c2"), 6, 2), _
    Worksheets("sheet1").Range("c2").Value)
    End Sub

    --


    Gary


    "oOpsy" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi Gary!
    >
    > Thanks for the code. But sorry that i left out something impt! In
    > sheet3, C2, i have data such as <val>11</val>. I want to replace just
    > the numeral 11 from the numeral 20 which i copy from Sheet 1 C2. Is
    > that possible? So that in the end, sheet3 C2 will display as
    > <val>20</val>
    >
    > Thanks!
    >
    >
    > --
    > oOpsy
    > ------------------------------------------------------------------------
    > oOpsy's Profile:
    > http://www.excelforum.com/member.php...o&userid=29132
    > View this thread: http://www.excelforum.com/showthread...hreadid=489705
    >




  6. #6
    Registered User
    Join Date
    11-27-2005
    Posts
    11
    Thanks a lot gary! the 2nd code did the trick

+ 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