Please see this blog posting on how to ensure you get Word and Excel documents reported correctly:
http://channel9.msdn.com/wiki/default.aspx/OfficeDeployment.OMPMContributions Here's the content of that blog:
The OMPM does not report on any macro conversion issues, but you can use it to find all documents with VBA projects. The OMPM scanner can detect if a Word, Excel, or PowerPoint file has a VBA project or not. (Even if the VBA project is empty, it will still be reported as having a project). With a few simple tweaks, you can import this information in the OMPM database and filter for files with Macros. This does require a new database, but you won't need to rescan as the scan xml logs already contain the VBA Project information
[NoVBAProject] [bit] NULL,
<ElementType name="NoVBAProject" dt:type="boolean" sql:datatype="bit"/>
<element type="NoVBAProject" sql:field="NoVBAProject" />
SELECT * FROM osScanFile WHERE scanfileID IN (SELECT scanfileID FROM osVBAProperty WHERE NoVBAProject = 0) (You can customize this query and join it with other tables for more information if desired)