Lấy thông tin Summary của File Excel

Liên hệ QC

Excel_Fan

Thành viên mới
Tham gia
23/10/07
Bài viết
6
Được thích
10
Chào các Bạn!

Cho tôi hỏi: Trong excel VBA làm sao lấy thông tin trong tab Summary thuộc Properties của 1 file Excel.
Tab Summary hiện ra khi chọn File.Properties.Summary trên menu của Excel.

Thân chào.
 
Chào bạn,

Code sau đây cho bạn thông tin cái file XL hiện hành nha:

Mã:
Sub Info()
Dim i As Integer
Dim p As Variant
Dim finfo As String
    i = 0
    For Each p In ActiveWorkbook.BuiltinDocumentProperties
        i = i + 1
        On Error Resume Next
        finfo = finfo & ActiveWorkbook.BuiltinDocumentProperties(i).Name _
        & " - " & ActiveWorkbook.BuiltinDocumentProperties(i).Value & vbNewLine
    Next
    MsgBox finfo
End Sub

Mến
 
Upvote 0
Web KT

Bài viết mới nhất

Back
Top Bottom