Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Deleting Charactors from a cell and the whole column

I have a column of SKU's. The SKU's can be numbers, numbers with dashes,
number and letters, etc. When you view the data in each cell it looks the
way it should (ex. BN12345). When you click on the cell, there is a single
quote (') at the beginning of each SKU. How do I get rid of this? I have
tried formatting as text, Ctrl H (Find and Replace), everything I can think
of. Any suggestions.
--
LSC
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,058
Default Deleting Charactors from a cell and the whole column

Select the cells with the single quotes and run this macro:

Sub tickiller()
For Each r In Selection
With r
.Value = .Value
End With
Next
End Sub

--
Gary''s Student - gsnu200775


"Card1234" wrote:

I have a column of SKU's. The SKU's can be numbers, numbers with dashes,
number and letters, etc. When you view the data in each cell it looks the
way it should (ex. BN12345). When you click on the cell, there is a single
quote (') at the beginning of each SKU. How do I get rid of this? I have
tried formatting as text, Ctrl H (Find and Replace), everything I can think
of. Any suggestions.
--
LSC

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
Deleting cell data without deleting formula Tom Hall Excel Discussion (Misc queries) 4 October 29th 06 04:07 PM
deleting entire rows with the same cell value in the first column Pedro F. Excel Discussion (Misc queries) 3 January 11th 06 07:10 PM
how prevent formula in cell from deleting when deleting value???? sh-boom New Users to Excel 1 September 30th 05 06:12 PM
Max charactors for 'ActiveWorkbook.SaveAs Filename'? TOMB Excel Worksheet Functions 1 February 16th 05 06:44 AM
VBA 'deleting row if a cell in column A is a zero. Charlie Excel Worksheet Functions 4 December 7th 04 04:50 PM


All times are GMT +1. The time now is 09:53 AM.

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"