Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 14
Default Help with VB code please

Paul

That's great I can go to bed now

Thanks

Mick


wrote in message
...
FullName = InputBox(Message, Title, Default)
If FullName = "" Then Exit Sub ' Or display a MsgBox and do whatever.

HTH
Paul
--------------------------------------------------------------------------

------------------------------------
Be advised to back up your WorkBook before attempting to make changes.
--------------------------------------------------------------------------

------------------------------------
On Sat, 13 Sep 2003 01:59:47 +0100, "Mick"
wrote:

The code below deletes all enteries of a "patrol" in an excel

spreadsheet.
It does the job well other than can anybody suggest how I can stop it

from
entering a nil string if you click on Cancel as this deletes any blank
cell/row which is not what I need it to do, hence the DO NOT USE CANCEL

in
the message.

Thanks

Mick

Sub DeletePatrol()
'
' DeletePatrol Macro
' 12/09/2003 by Mick Southam
'
Application.ScreenUpdating = False
Dim Message, Title, Default, FullName
Title = "Delete Patrol from TRF file"
Message = "Please enter the full name of the patrol you wish to delete.

It
MUST be entered exactly as displayed in the TRF file i.e. Surname comma
space Firstname and each letter in the same case. DO NOT USE CANCEL"
Default = "Enter Name"
FullName = InputBox(Message, Title, Default)
Range("B1").Select
For Row = 1 To 2000
If ActiveCell = FullName Then
ActiveCell.EntireRow.Select
Selection.Delete Shift:=xlUp
ActiveCell.Offset(0, 1).Select
Else
ActiveCell.Offset(1, 0).Select
End If
Next Row
Range("A1").Select
MsgBox "Patrol deleted"
Application.ScreenUpdating = True
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
split post code (zip code) out of cell that includes full address Concord Excel Discussion (Misc queries) 4 October 15th 09 06:59 PM
Code to conditional format all black after date specified in code? wx4usa Excel Discussion (Misc queries) 3 December 26th 08 07:06 PM
Drop Down/List w/Code and Definition, only code entered when selec Spiritdancer Excel Worksheet Functions 2 November 2nd 07 03:57 AM
Convert a Number Code to a Text Code Traye Excel Discussion (Misc queries) 3 April 6th 07 09:54 PM
copying vba code to a standard code module 1vagrowr Excel Discussion (Misc queries) 2 November 23rd 05 04:00 PM


All times are GMT +1. The time now is 01:15 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"