A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hello Sławek Balcerzak,
The behavior you're seeing follows how Excel saves files on network drives. When you saw the message about “saved to a temporary document (.MACTF)”, Excel was trying to create a temporary file in the same location then rename it to your final file. Because the network connection dropped, that process didn’t fully complete.
I suggest you try this:
1) Reconnect to the same network location
Reconnect Wi-Fi / VPN
In Finder: Go > Connect to Server
Open the exact folder where the original file was saved
- Check that folder carefully
Sort by Date Modified (newest first) and look for: ED031B30.MACTF/ ED031B30
Any file with a random name created around the same time
Excel usually creates the temp file in this same folder, not on your local Mac
- Use Terminal to search that folder (more precise)
find "/Volumes/YourShare/YourFolder" -iname "ED031B30" -o -iname "*.mactf"
- If you find the file
Copy it to Desktop first
Open it in Excel (File > Open)
Then Save As > .xlsx to a local folder
- If nothing is found
Do a quick permission check on that network folder:
- Try creating a file
- Try renaming it
- Try deleting it
If any of these fail > Excel may not have enough permission (needs modify + delete) to complete the save process.
- Last check (local search)
sudo find / -iname "ED031B30" 2>/dev/null
Important note, If:
- nothing exists in the network folder
- nothing is found locally
- and Excel was already closed
> the save likely failed before the temporary file was fully written, so there’s no recoverable file.
For reference, this temp-file save behavior was explained here: https://support.microsoft.com/en-us/topic/fe847711-96cf-5978-00ae-46e30db88982
If this happens again:
- Don’t close Excel right away
- Try Save As > Desktop while the file is still open
- That gives you the best chance to keep your changes.
I hope this will help with your situation. Please feel free to reach back if you have further update or more questions.
Best Regards,
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment”.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.