kelvin
Thành viên thường trực
- Tham gia
- 24/6/06
- Bài viết
- 202
- Được thích
- 184
- Nghề nghiệp
- Tư vấn xây dựng, kinh doanh in ấn
Minh load được đoạn code sau:
-----------
Không tìm được Entry Property trong Object Browser, VBA, Excel Help ??
Mã:
Option Explicit
' This is a simple example of using the OnEntry property. The Auto_Open sub calls the Action
' sub. The font is set to bold in the ActiveCell if the value is >= 500. Thus if the value is >=500,
' then ActiveCell.Font.Bold = True. If the value is less than 500, then ActiveCell.Font.Bold = False.
' The Auto_Close sub "turns off" OnEntry.
Sub Auto_Open()
ActiveSheet.OnEntry = "Action"
End Sub
Sub Action()
If IsNumeric(ActiveCell) Then
ActiveCell.Font.Bold = ActiveCell.Value >= 500
End If
End Sub
Sub Auto_Close()
ActiveSheet.OnEntry = ""
End Sub
Không tìm được Entry Property trong Object Browser, VBA, Excel Help ??
Chỉnh sửa lần cuối bởi điều hành viên: