Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9
Default Mystery ALT key character illudes all methods of extraction! HELP!

You could try this:
Sub FindReplace()
Dim row As Integer
Dim myCell As Range
Set myCell = Application.InputBox( _
prompt:="Select a cell which has the contents you want to remove",
Type:=8)
For row = 1 To Worksheets(1).UsedRange.Rows.Count
If Worksheets(1).Range("A" & row).Value = myCell.Value Then
Worksheets(1).Range("A" & row).Delete Shift:=xlShiftUp
End If
Next row
Set myCell = Nothing
End Sub

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
Inconsistant character spaces extraction formula Sneilan Excel Discussion (Misc queries) 3 October 19th 07 04:54 PM
Mystery object John in Wembley Excel Discussion (Misc queries) 5 August 27th 07 08:40 PM
MYSTERY!! WhytheQ Excel Discussion (Misc queries) 2 June 20th 06 11:00 AM
Mystery Cell Jim H. Excel Discussion (Misc queries) 4 March 24th 06 05:40 PM
Mystery ALT key character illudes all methods of extraction! HELP! bxc2739 Excel Discussion (Misc queries) 6 March 16th 06 08:12 PM


All times are GMT +1. The time now is 07:14 AM.

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"