Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have the following code in a cell:
rivate Sub Workbook_beforeclose(Cancel As Boolean) Dim j As Integer If Trim(Me.Worksheets("competency").Range("C3").Value ) = "" Then MsgBox "Cell C3 is empty. Please fill it" Cancel = True Exit Sub End If For j = 1 To Len(Me.Worksheets("competency").Range("C3")) If ((Asc(UCase(Mid(Me.Worksheets("competency").Range( "C3").Value j, 1))) Asc("Z")) Or _ (Asc(UCase(Mid(Me.Worksheets("competency").Range(" C3").Value, j, 1))) Asc("A"))) _ And (Mid(Me.Worksheets("competency").Range("C3").Value j, 1) < " ") Then MsgBox "Cell C3 contains illegal characters, only letters" Cancel = True Exit Sub End If Next j If I want to apply this code to mulptiple cells where should I put th other code? Should it be part of J loop, or should I make another one I've tried it either way and it has not worked, so if anyone can b specific and help me I would GREATLY appreciate it -- Message posted from http://www.ExcelForum.com |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How can I loop through a the values in multiple rows | Excel Discussion (Misc queries) | |||
Setting Multiple Variables with a loop | Excel Discussion (Misc queries) | |||
Use a loop to create multiple Charts - Suggestions ? | Charts and Charting in Excel | |||
VLOOKUP loop multiple times | Excel Worksheet Functions | |||
VBA loop cells | Excel Programming |