Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a spreadsheet where all the fields (except those with numbers) have a
' before the data in the cell. The ' does not show up in the cell, but only in the formula line. CTRL+H does not work, nor does it work using the ~ with the ' (either before or after the ' character). I need to remove this character in order for my formulas to work. The spreadsheet has over 10K rows and 170 columns. Thank you, Susie |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
1.. In an empty cell on the worksheet, type the value 1.
2.. Select the cell that contains the value 1, and click Copy on the Edit menu. 3.. Select the cells that contain the text that you want to replace, and then click Paste Special on the Edit menu. 4.. Under Paste, click Values. Under Operation, click Multiply, and then click OK. Don Guillett Microsoft MVP Excel SalesAid Software "Suz771" wrote in message ... I have a spreadsheet where all the fields (except those with numbers) have a ' before the data in the cell. The ' does not show up in the cell, but only in the formula line. CTRL+H does not work, nor does it work using the ~ with the ' (either before or after the ' character). I need to remove this character in order for my formulas to work. The spreadsheet has over 10K rows and 170 columns. Thank you, Susie |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Did you try to press ONLY ONCE the key combination CTRL and ~ ?
[try to press and HOLD the CTRL key and then press on the ~ key [located at the far left of the horizontal numeric keys]. Micky "Suz771" wrote: I have a spreadsheet where all the fields (except those with numbers) have a ' before the data in the cell. The ' does not show up in the cell, but only in the formula line. CTRL+H does not work, nor does it work using the ~ with the ' (either before or after the ' character). I need to remove this character in order for my formulas to work. The spreadsheet has over 10K rows and 170 columns. Thank you, Susie |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If you change the alignment to center or right do the ' change to ^ or "
Turn off Transition Options. What type of formulas are you using that care about the ' in cells without numbers? Gord Dibben MS Excel MVP On Fri, 2 Apr 2010 07:33:02 -0700, Suz771 wrote: I have a spreadsheet where all the fields (except those with numbers) have a ' before the data in the cell. The ' does not show up in the cell, but only in the formula line. CTRL+H does not work, nor does it work using the ~ with the ' (either before or after the ' character). I need to remove this character in order for my formulas to work. The spreadsheet has over 10K rows and 170 columns. Thank you, Susie |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Use this code;
Sub RemoveIt() With ActiveSheet.UsedRange.SpecialCells(xlCellTypeConst ants, xlTextValues) .Value = .Value End With End Sub -- Regards Dave Hawley www.ozgrid.com "Suz771" wrote in message ... I have a spreadsheet where all the fields (except those with numbers) have a ' before the data in the cell. The ' does not show up in the cell, but only in the formula line. CTRL+H does not work, nor does it work using the ~ with the ' (either before or after the ' character). I need to remove this character in order for my formulas to work. The spreadsheet has over 10K rows and 170 columns. Thank you, Susie |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Do you want to replace the destination cells? | Excel Discussion (Misc queries) | |||
Checking the Cells in Sheet1 with Cells in Sheet2 and replace | Excel Worksheet Functions | |||
Replace #VALUE! in cells of a worksheet | Excel Discussion (Misc queries) | |||
How to find multiple cells/replace whole cells w/data | Excel Discussion (Misc queries) | |||
Replace cells with blank | Excel Worksheet Functions |