Welcome to the { mindfrost82.com } forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

Go Back   { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Microsoft > MS Office > Excel

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 05-08-2008, 04:37 PM
=?Utf-8?B?am9obnJiNzg2NQ==?=
 
Posts: n/a
formatting

Hello, does anyone know how I can look at a cell without seeing a special
character? I need to determine a length by subtracting one cell from another
but the numbers in the cell are engineering stationing in the format
xxx+xx.xx (300+45.10). I need to use this data to get the number 30045.10 to
then subtract from another cell of the same type.
Reply With Quote
  #2 (permalink)  
Old 05-08-2008, 04:42 PM
Ron Coderre
 
Posts: n/a
Re: formatting

With your sample entry in cell A1...
Try this:

B1: =--SUBSTITUTE(A1,"+","")

If A1 contains 300+45.10
that formula returns 30045.1

Does that help?
Post back if you have more questions.
--------------------------

Regards,

Ron
Microsoft MVP (Excel)
(XL2003, Win XP)


"johnrb7865" <johnrb7865@discussions.microsoft.com> wrote in message
news:B812E164-E52B-445A-966B-462762E7B729@microsoft.com...
> Hello, does anyone know how I can look at a cell without seeing a special
> character? I need to determine a length by subtracting one cell from
> another
> but the numbers in the cell are engineering stationing in the format
> xxx+xx.xx (300+45.10). I need to use this data to get the number 30045.10
> to
> then subtract from another cell of the same type.



Reply With Quote
  #3 (permalink)  
Old 05-08-2008, 04:49 PM
Ron Coderre
 
Posts: n/a
Re: formatting

Another thought, using the same approach to calculate differences.

With
A1: 300+45.10
A2: 200+29.40

This formula removes the plus signs and returns A1 minus A2.
A3: =SUBSTITUTE(A1,"+","")-SUBSTITUTE(A2,"+","")

In the above example,
A3 returns: 10015.7

Does that help?
--------------------------

Regards,

Ron
Microsoft MVP (Excel)
(XL2003, Win XP)


"Ron Coderre" <ronREMOVETHIScoderre@bigfoot.com> wrote in message
news:55877B44-17CB-4CB6-8B96-EF49FFF1E414@microsoft.com...
> With your sample entry in cell A1...
> Try this:
>
> B1: =--SUBSTITUTE(A1,"+","")
>
> If A1 contains 300+45.10
> that formula returns 30045.1
>
> Does that help?
> Post back if you have more questions.
> --------------------------
>
> Regards,
>
> Ron
> Microsoft MVP (Excel)
> (XL2003, Win XP)
>
>
> "johnrb7865" <johnrb7865@discussions.microsoft.com> wrote in message
> news:B812E164-E52B-445A-966B-462762E7B729@microsoft.com...
>> Hello, does anyone know how I can look at a cell without seeing a special
>> character? I need to determine a length by subtracting one cell from
>> another
>> but the numbers in the cell are engineering stationing in the format
>> xxx+xx.xx (300+45.10). I need to use this data to get the number 30045.10
>> to
>> then subtract from another cell of the same type.

>
>


Reply With Quote
  #4 (permalink)  
Old 05-08-2008, 05:02 PM
=?Utf-8?B?am9obnJiNzg2NQ==?=
 
Posts: n/a
Re: formatting

That worked perfect. Thanks, John

"Ron Coderre" wrote:

> Another thought, using the same approach to calculate differences.
>
> With
> A1: 300+45.10
> A2: 200+29.40
>
> This formula removes the plus signs and returns A1 minus A2.
> A3: =SUBSTITUTE(A1,"+","")-SUBSTITUTE(A2,"+","")
>
> In the above example,
> A3 returns: 10015.7
>
> Does that help?
> --------------------------
>
> Regards,
>
> Ron
> Microsoft MVP (Excel)
> (XL2003, Win XP)
>
>
> "Ron Coderre" <ronREMOVETHIScoderre@bigfoot.com> wrote in message
> news:55877B44-17CB-4CB6-8B96-EF49FFF1E414@microsoft.com...
> > With your sample entry in cell A1...
> > Try this:
> >
> > B1: =--SUBSTITUTE(A1,"+","")
> >
> > If A1 contains 300+45.10
> > that formula returns 30045.1
> >
> > Does that help?
> > Post back if you have more questions.
> > --------------------------
> >
> > Regards,
> >
> > Ron
> > Microsoft MVP (Excel)
> > (XL2003, Win XP)
> >
> >
> > "johnrb7865" <johnrb7865@discussions.microsoft.com> wrote in message
> > news:B812E164-E52B-445A-966B-462762E7B729@microsoft.com...
> >> Hello, does anyone know how I can look at a cell without seeing a special
> >> character? I need to determine a length by subtracting one cell from
> >> another
> >> but the numbers in the cell are engineering stationing in the format
> >> xxx+xx.xx (300+45.10). I need to use this data to get the number 30045.10
> >> to
> >> then subtract from another cell of the same type.

> >
> >

>

Reply With Quote
  #5 (permalink)  
Old 05-08-2008, 05:21 PM
Ron Coderre
 
Posts: n/a
Re: formatting


You're welcome.....I'm glad I could help.

Regards,

Ron
Microsoft MVP (Excel)

"johnrb7865" <johnrb7865@discussions.microsoft.com> wrote in message
news:4BB55F6F-3FAC-4439-B0EE-93942C5302F1@microsoft.com...
> That worked perfect. Thanks, John
>
> "Ron Coderre" wrote:
>
>> Another thought, using the same approach to calculate differences.
>>
>> With
>> A1: 300+45.10
>> A2: 200+29.40
>>
>> This formula removes the plus signs and returns A1 minus A2.
>> A3: =SUBSTITUTE(A1,"+","")-SUBSTITUTE(A2,"+","")
>>
>> In the above example,
>> A3 returns: 10015.7
>>
>> Does that help?
>> --------------------------
>>
>> Regards,
>>
>> Ron
>> Microsoft MVP (Excel)
>> (XL2003, Win XP)
>>
>>
>> "Ron Coderre" <ronREMOVETHIScoderre@bigfoot.com> wrote in message
>> news:55877B44-17CB-4CB6-8B96-EF49FFF1E414@microsoft.com...
>> > With your sample entry in cell A1...
>> > Try this:
>> >
>> > B1: =--SUBSTITUTE(A1,"+","")
>> >
>> > If A1 contains 300+45.10
>> > that formula returns 30045.1
>> >
>> > Does that help?
>> > Post back if you have more questions.
>> > --------------------------
>> >
>> > Regards,
>> >
>> > Ron
>> > Microsoft MVP (Excel)
>> > (XL2003, Win XP)
>> >
>> >
>> > "johnrb7865" <johnrb7865@discussions.microsoft.com> wrote in message
>> > news:B812E164-E52B-445A-966B-462762E7B729@microsoft.com...
>> >> Hello, does anyone know how I can look at a cell without seeing a
>> >> special
>> >> character? I need to determine a length by subtracting one cell from
>> >> another
>> >> but the numbers in the cell are engineering stationing in the format
>> >> xxx+xx.xx (300+45.10). I need to use this data to get the number
>> >> 30045.10
>> >> to
>> >> then subtract from another cell of the same type.
>> >
>> >

>>


Reply With Quote
Reply

  { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Microsoft > MS Office > Excel


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 03:51 PM.


Powered by vBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.
© 1999-2008 mindfrost82.com v11.0


Sponsors:
Music Store | Electricity Suppliers | Repair Bad Credit | Loan | Mortgage



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114