Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 347
Default How do I add an equals sign to a cell that already has numbers in

I have hundreds of cells that already have some sort of function in them but
do not know how to add the equals (=) sign to each cell automatically instead
of going through each cell individually which will take forever. Please
help. Thank You!
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 175
Default How do I add an equals sign to a cell that already has numbers in


I can think of the Replace function but you need to shows some
examples of how your functions look like.

--
Hope this is helpful

Pls click the Yes button below if this post provide answer you have asked


Thank You

cheers, francis










"George" wrote:

I have hundreds of cells that already have some sort of function in them but
do not know how to add the equals (=) sign to each cell automatically instead
of going through each cell individually which will take forever. Please
help. Thank You!

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 347
Default How do I add an equals sign to a cell that already has numbers

the problem is there is no function. it basically has a bunch of numbers.
6*12.99, or 4*2.99 etc. and it keeps going. i just need to add = sign in
each cell and not lose the rest.

"francis" wrote:


I can think of the Replace function but you need to shows some
examples of how your functions look like.

--
Hope this is helpful

Pls click the Yes button below if this post provide answer you have asked


Thank You

cheers, francis










"George" wrote:

I have hundreds of cells that already have some sort of function in them but
do not know how to add the equals (=) sign to each cell automatically instead
of going through each cell individually which will take forever. Please
help. Thank You!

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default How do I add an equals sign to a cell that already has numbers

="="&A1 in a helper column, then copy and Edit/ Paste Special/ Values, then
Edit/ Replace = by = to change from text to a formula.
--
David Biddulph

"George" wrote in message
...
the problem is there is no function. it basically has a bunch of numbers.
6*12.99, or 4*2.99 etc. and it keeps going. i just need to add = sign in
each cell and not lose the rest.

"francis" wrote:


I can think of the Replace function but you need to shows some
examples of how your functions look like.

--
Hope this is helpful

Pls click the Yes button below if this post provide answer you have asked


Thank You

cheers, francis










"George" wrote:

I have hundreds of cells that already have some sort of function in
them but
do not know how to add the equals (=) sign to each cell automatically
instead
of going through each cell individually which will take forever.
Please
help. Thank You!



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 347
Default How do I add an equals sign to a cell that already has numbers

THANK YOU! YOU ARE AWESOME!

"David Biddulph" wrote:

="="&A1 in a helper column, then copy and Edit/ Paste Special/ Values, then
Edit/ Replace = by = to change from text to a formula.
--
David Biddulph

"George" wrote in message
...
the problem is there is no function. it basically has a bunch of numbers.
6*12.99, or 4*2.99 etc. and it keeps going. i just need to add = sign in
each cell and not lose the rest.

"francis" wrote:


I can think of the Replace function but you need to shows some
examples of how your functions look like.

--
Hope this is helpful

Pls click the Yes button below if this post provide answer you have asked


Thank You

cheers, francis










"George" wrote:

I have hundreds of cells that already have some sort of function in
them but
do not know how to add the equals (=) sign to each cell automatically
instead
of going through each cell individually which will take forever.
Please
help. Thank You!






  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 347
Default How do I add an equals sign to a cell that already has numbers

sorry but how do you do it for a whole bunch of cells? can't figure it out.

"David Biddulph" wrote:

="="&A1 in a helper column, then copy and Edit/ Paste Special/ Values, then
Edit/ Replace = by = to change from text to a formula.
--
David Biddulph

"George" wrote in message
...
the problem is there is no function. it basically has a bunch of numbers.
6*12.99, or 4*2.99 etc. and it keeps going. i just need to add = sign in
each cell and not lose the rest.

"francis" wrote:


I can think of the Replace function but you need to shows some
examples of how your functions look like.

--
Hope this is helpful

Pls click the Yes button below if this post provide answer you have asked


Thank You

cheers, francis










"George" wrote:

I have hundreds of cells that already have some sort of function in
them but
do not know how to add the equals (=) sign to each cell automatically
instead
of going through each cell individually which will take forever.
Please
help. Thank You!




  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default How do I add an equals sign to a cell that already has numbers

The same way.
--
David Biddulph

"George" wrote in message
...
sorry but how do you do it for a whole bunch of cells? can't figure it
out.

"David Biddulph" wrote:

="="&A1 in a helper column, then copy and Edit/ Paste Special/ Values,
then
Edit/ Replace = by = to change from text to a formula.
--
David Biddulph

"George" wrote in message
...
the problem is there is no function. it basically has a bunch of
numbers.
6*12.99, or 4*2.99 etc. and it keeps going. i just need to add = sign
in
each cell and not lose the rest.

"francis" wrote:


I can think of the Replace function but you need to shows some
examples of how your functions look like.

--
Hope this is helpful

Pls click the Yes button below if this post provide answer you have
asked


Thank You

cheers, francis










"George" wrote:

I have hundreds of cells that already have some sort of function in
them but
do not know how to add the equals (=) sign to each cell
automatically
instead
of going through each cell individually which will take forever.
Please
help. Thank You!






  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default How do I add an equals sign to a cell that already has numbers in

One method I tested.

Assuming data is in column A

In B1 enter ="="&A1 and copy down.

Now copy the range in column B and Paste specialvaluesokesc

Now DataText to ColumnsNextNextColumn Data FormatFinish.

Alternate..........use a UDF

Function EvalCell(RefCell As String)
Application.Volatile
EvalCell = Evaluate(RefCell)
End Function

You have data like 234*45 or 1+56

=EvalCell(A1)


Gord Dibben MS Excel MVP


On Sat, 7 Mar 2009 10:02:01 -0800, George
wrote:

I have hundreds of cells that already have some sort of function in them but
do not know how to add the equals (=) sign to each cell automatically instead
of going through each cell individually which will take forever. Please
help. Thank You!


  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 272
Default How do I add an equals sign to a cell that already has numbers in

OR... Under ToolsOptionsTransition select "Transition Formula Entry"
then select the whole column and choose DataText to ColumnsFinish.
(Uncheck this option after)



"George" wrote:

I have hundreds of cells that already have some sort of function in them but
do not know how to add the equals (=) sign to each cell automatically instead
of going through each cell individually which will take forever. Please
help. Thank You!

  #10   Report Post  
Excel Super Guru
 
Posts: 1,867
Thumbs up Answer: How do I add an equals sign to a cell that already has numbers in

Adding an equals sign to cells in Excel
  1. Select the cells that need the equals sign added.
  2. Press "Ctrl + H" to open the "Find and Replace" dialog box.
  3. In the "Find what" field, type "=".
  4. In the "Replace with" field, type "=="
  5. Click "Replace All" to add the equals sign to each cell.

Note: Only select cells that do not already have an equals sign in them. Use the "Find what" field to search for cells with existing equals signs. Wrap any Excel formulas in
Formula:
and 
tags.
__________________
I am not human. I am an Excel Wizard


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
If a cell equals _, at the next row that equals _, return value fr CathyH Excel Worksheet Functions 10 May 2nd 07 07:53 PM
If cell is left blank, or equals zero, then cell equals a different cell John McMurry Excel Discussion (Misc queries) 3 April 13th 07 01:14 PM
Linking with equals sign doesn't always work marty53 Excel Worksheet Functions 7 August 18th 05 06:44 PM
Can I change the Insert Function button to an equals sign? Jokeyjojo Excel Discussion (Misc queries) 1 January 17th 05 05:45 PM
Eliminating Single Quote Before Equals Sign Steveinneed Excel Worksheet Functions 1 December 14th 04 03:43 AM


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

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

About Us

"It's about Microsoft Excel"