Case 9
If (Sumofmonths < 9) Then
Me.lbl1.Visible = True
i = i + 1
End If
Case 10
If (Sumofmonths < 9) Then
Me.lbl1.Visible = True
i = i + 1
End If
Case 9 , 10
If (Sumofmonths < 9) Then
Me.lbl1.Visible = True
i = i + 1
End If
End If
It is good practice to add the following to the beginning of your code :
Option Compare Database
Option Explicit
================================================== ==
I cannot find "FormatCount As Integer" used anywhere in your procedure. You should remove this, if you do not intend using it.
this is for current monthSelect Case Month(Date)
Option Compare Database
Option Explicit
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
Dim i As Integer
i = 0
Select Case Month(Date)
Case 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8
If (Sumofmonths < 9) Then
Me.lbl1.Visible = True
i = i + 1
End If
Case 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8
If (Sumofmonths < 19) Then
Me.lbl2.Visible = True
i = i + 1
End If
If this is a subroutine for an instanced event on a form then the format does not usually allow for shortening. This is because a number is past into FormatCount for use in the procedure if you need it. Just like KeyPress the keyAscii is passed into the procedure.Uncle Gizmo said:I cannot find "FormatCount As Integer" used anywhere in your procedure. You should remove this, if you do not intend using it.
Option Compare Database
Option Explicit
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
Dim i As Integer
Dim Mnth as Integer
i = 0
Mnth = Month(Date)
Select Case Mnth
Case 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8
If (Sumofmonths < 9) Then
Me.lbl1.Visible = True
i = i + 1
End If
Case 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8
If (Sumofmonths < 19) Then
Me.lbl2.Visible = True
i = i + 1
End If
snip...
End Select
dt01pqt said:If this is a subroutine for an instanced event on a form then the format does not usually allow for shortening. This is because a number is past into FormatCount for use in the procedure if you need it. Just like KeyPress the keyAscii is passed into the procedure.
should i remove those lines ?Uncle Gizmo said:Opps! I didn't spot that, although "Cancel as Integer" should have waved a red flag at me!
Sorry about that!!!
is an expression in a query, this report has to do with paymets, showing which months(lbl1,lbl2....) member hasn't payed and counting the months that hasn't payed (i=i+1)what is sumofmonths?
illusion said:should i remove those lines ?
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
Code:Select Case Month(Date) Case 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8 If (Sumofmonths < 9) Then Me.lbl1.Visible = True i = i + 1 End If Case 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8 If (Sumofmonths < 19) Then Me.lbl2.Visible = True i = i + 1 End If
I would agree, even with a stack of if statements it is not likely to be shorter. However if illusion encounters a problem of this magnitude again I would seriously suggest using arrays, even if it means creating your own abstract from a visual diagram. Sometimes it is impossible to work out every eventuality in a case by case basis so you have to approach it a different way. Humans are not supercomputers they just build them.Uncle Gizmo said:As for the numbers in the case statement, if the numbers are in the first case, then they are ignored in the second case. That may be why your code is not working correctly. So I would suggest you go back to your "If Statement's" for now, same old adage really, if it's working leave well alone!