LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default VBA Loop Case..If syntax


Hi

I'm getting *-"Next without for"-* error on line "*Next i*". Th
related -*for*- statement is *-For i = 3To FinalRow-*
but I must have closed the loop someplace in the syntax.

The macro does the following
1. For IPU servers writes a tag of "N/A"
2. Reviews "CurrentClass" and assigns values of "4YOS" or "N/A"
3. For the remaining servers not "N/A" or "4YOS"..
5. If mfg date 01/06/2004 _AND_ install date 01/10/2004 assign valu
of "new" otherwise assign all unremaining untagged servers as "old"

Can somebody indicate:
(a)..correct syntax for the "For"..."Next i" loop.
(b) is syntax for (5) above correct?

Thanks in advance



Code
-------------------


Sub ServerCategory()
Sheets("Sheet1").Select
FinalRow = Cells(65536, 1).End(xlUp).Row
For i = 3 To FinalRow
CommServerMap = Cells(i, 7).Value
CurrentClass = Cells(i, 29).Value
MfgDate = Cells(i, 34).Value
InstallDate = Cells(i, 35).Value

Select Case CommServerMap
Case "IPU Server"
IPU = True
Case Else
IPU = False
End Select

If IPU Then
Cells(i, 32).Value = "N/A"
Else
Select Case CurrentClass
Case "A1s", "A2s", "A3s", "HOA1s", "HOA2s", "HOA3s", "SOA1s", "SOA2s", "SOA3s", "SOI1s", "SOI2s", "SOI3s"
Cells(i, 32).Value = "4YOS"

Case "Not in HP scope", "Out of production", "Pending", "NBA1", "NBA2", "NBI1", "NBI2", "I1", "I2", "I3"
Cells(i, 32).Value = "N/A"

End Select ' ends select current class

Select Case MfgDate
Case Is 38139
If InstallDate 38261 Then
Cells(i, 32).Value = "New"
Else
Cells(i, 32).Value = "Old"

End If 'is server an IPU server

Next i

MsgBox "Classification have been applied"

End Sub

-------------------

--
okell
-----------------------------------------------------------------------
okelly's Profile: http://www.excelforum.com/member.php...fo&userid=3670
View this thread: http://www.excelforum.com/showthread.php?threadid=56878

 
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
loop syntax Knox Excel Programming 2 May 17th 06 06:57 PM
syntax for to upper case letters? dex Excel Programming 3 December 4th 05 07:20 AM
Select Case for Active Worksheet syntax. mikeburg[_43_] Excel Programming 2 December 2nd 05 12:26 AM
Syntax for Select Case Susan Hayes Excel Programming 4 November 30th 05 10:49 AM
Select Case syntax Susan Hayes Excel Programming 2 December 4th 04 10:42 PM


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