+ Reply to Thread
Results 1 to 3 of 3

how do i replace ( with / without changing format to fraction

  1. #1
    Splt Window Diner
    Guest

    how do i replace ( with / without changing format to fraction

    I have a text field with a '('.
    ex: 125 108(130

    I want to replace the '(' with a '/' without changing the format of the
    field to a fraction so my result would be '125 108/130' instead of changing
    it to
    '125.8307692'

    Would appreciate any help you could give me.


  2. #2
    Forum Contributor
    Join Date
    10-14-2004
    Location
    San Diego, CA
    Posts
    213
    Try this:

    =SUBSTITUTE(A1,"(","/")

    Matt

  3. #3
    Tom Hayakawa
    Guest

    RE: how do i replace ( with / without changing format to fraction

    Here's one way:

    If A1= 125 108(130
    In A2 you would have:
    =CONCATENATE(LEFT(A1,FIND("(",A1,1)-1),"/",RIGHT(A1,LEN(A1)-FIND("(",A1,1)))


    "Splt Window Diner" wrote:

    > I have a text field with a '('.
    > ex: 125 108(130
    >
    > I want to replace the '(' with a '/' without changing the format of the
    > field to a fraction so my result would be '125 108/130' instead of changing
    > it to
    > '125.8307692'
    >
    > Would appreciate any help you could give me.
    >


+ 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