Previously I had an answer discussing how to retrieve basic file info, but to access Office file info, you have to do a bit more work...
Using this answer from a previous question, I made a PowerShell function to make this easy for you.
Source Here on github
Usage
Get-OfficeFileInfo C:\temp\UsersOfabc.comDomain.xlsx
Name Exp
---- ---
Title
Subject
Author
Keywords
Comments
Template
Last author Stephen Owen
Revision number
Application name Microsoft Excel
Creation date 7/21/2021 11:30:51 AM
Last save time 7/21/2021 11:30:51 AM
Security 0
Category
Format
Manager
Company
Hyperlink base
Content type
Content status
Language
Document version
Getting the specific property you want
$fileInfo = Get-OfficeFileInfo C:\temp\UsersOfabc.comDomain.xlsx
$dateSaved = $fileInfo | ? Name -eq "Last save time"
C:\temp\> $dateSaved.Exp
Wednesday, July 21, 2021 11:30:51 AM