- ©«¤l
- 522
- ¥DÃD
- 36
- ºëµØ
- 1
- ¿n¤À
- 603
- ÂI¦W
- 0
- §@·~¨t²Î
- win xp sp3
- ³nÅ骩¥»
- Office 2003
- ¾\ŪÅv
- 50
- ©Ê§O
- ¨k
- µù¥U®É¶¡
- 2012-12-13
- ³Ì«áµn¿ý
- 2021-7-11
|
'¸Õ¸Õ¬Ý:
'¦ý MsgBox ¦r¼Æ¦³¨î, ¤@¦¸¤£¯à¸Ë¤Ó¦h!!
'¯à¸Ë¦h¤Ö§Ú¤£²M·¡!!
'¦pªG¸Ë¤£¤U, ´Nn¤À¬qÅã¥Ü.
Private Sub Workbook_Open()
Dim xT As String
With Sheet1
For i = 2 To .UsedRange.Rows.Count + 1
If .Cells(i, 8) = "PENDING" Then
If ("0" < .Cells(i, 7)) And (.Cells(i, 7) < "4") Then
xT = xT & (.Cells(i, 3) & " Still have" & .Cells(i, 7) & "days!!! PLEASE UPDATE. ") & Chr(10)
ElseIf ((.Cells(i, 7)) < "1") Then
xT = xT & (.Cells(i, 3) & " Still not arrive!!!!! PLEASE FOLLOW UP. ") & Chr(10)
End If
End If
Next i
MsgBox xT
End With
End Sub |
|