#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 61
Default Not show

I have an excel sheet that has information pulled directly from another
software program. In the other software program there are sometimes asteriks
in front of the numbers, when it brings the data to excel, those asteriks are
still there. However, I don't want the asteriks to be there because I need
to lookup the numbers in another file. Is there a way to copy the data into
other columns in excel but disregard the *'s?

For Example:

If it pulled the data of *70.43 in C35, I want the formula to put 70.43 in
cell E35. The numbers will either be 2,3,4, or 5 digits.

Any Help?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 515
Default Not show

In E35 enter
=IF(LEFT(C35,1)="*",RIGHT(C35,LEN(C35)-1),C35)
If you want it to be seen as amounts, then modify as follows
=IF(LEFT(C35,1)="*",RIGHT(C35,LEN(C35)-1)+0,C35)

--
HTH

Kassie

Replace xxx with hotmail


"lightbulb" wrote:

I have an excel sheet that has information pulled directly from another
software program. In the other software program there are sometimes asteriks
in front of the numbers, when it brings the data to excel, those asteriks are
still there. However, I don't want the asteriks to be there because I need
to lookup the numbers in another file. Is there a way to copy the data into
other columns in excel but disregard the *'s?

For Example:

If it pulled the data of *70.43 in C35, I want the formula to put 70.43 in
cell E35. The numbers will either be 2,3,4, or 5 digits.

Any Help?

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
How can I show radians in symbolic format in excel? like 90 degrees would show (Symbol Pi/2) tia sal2 temp Excel Worksheet Functions 2 December 24th 07 10:45 PM
Better example I hope how can I show radians in symbolic format in excel? like 90 degrees would show (Symbol Pi/2) tia sal2 temp Excel Discussion (Misc queries) 4 December 24th 07 02:21 AM
Better example I hope how can I show radians in symbolic format in excel? like 90 degrees would show (Symbol Pi/2) tia sal2 temp Excel Worksheet Functions 4 December 24th 07 02:21 AM
How can I show radians in symbolic format in excel? like 90 degrees would show (Symbol Pi/2) tia sal2 temp Excel Discussion (Misc queries) 2 December 14th 07 07:36 PM
How can I show radians in symbolic format in excel? like 90 degrees would show (Symbol Pi/2) tia sal2 temp Excel Worksheet Functions 2 December 14th 07 07:36 PM


All times are GMT +1. The time now is 05:09 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"