freelance-dashboard/scripts/close_excel.vbs
StillHammer 21ebf32e4f Dashboard avec graphiques, TCD, slicers et checkboxes fonctionnels
- KPIs complets (CA, Heures, Taux, Stats, Objectifs)
- Graphiques CA par client + Heures par client
- TCD Heures x Client x Projet avec Slicer interactif
- Checkboxes dynamiques bien positionnes (E3:E7)
- Documentation technique et guides MCP

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-21 17:05:25 +07:00

10 lines
229 B
Plaintext

On Error Resume Next
Dim objExcel
Set objExcel = GetObject(, "Excel.Application")
If Not objExcel Is Nothing Then
objExcel.DisplayAlerts = False
objExcel.Quit
Set objExcel = Nothing
End If
WScript.Echo "Excel closed"