The following is adapted from the help files and gives a list of the available file properties. By the nature of it, it writes to cells in a sheet.
On Error Resume Next
Err.Clear
rw = 1
Worksheets(1).Activate
For Each p In ActiveWorkbook.BuiltinDocumentProperties
Cells(rw, 1).Value = p.Name
Cells(rw, 2).Value = p.Value
rw = rw + 1
Next