- 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>
10 lines
229 B
Plaintext
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"
|