[ActiveWorkbook.BuiltinDocumentProperties("Creation Date")] is a date type. It needs to be converted to a string. Do it as follows.
Format(ActiveWorkbook.BuiltinDocumentProperties("Creation Date"), "yyyymmdd_hhnnss")
I hope this is helpful.