Microsoft Office
Excel
Startup option
- Safe mode: hold
CTRL
key - New instance: hold
ALT
key
Excel UI
- Move the cursor in a selection box: F2
- Select only visible cells: Alt + ;
Un-hide all tabs
Alt+F11 for VBA F5 for execution
Sub UnhideAllSheets()
Dim ws As Worksheet
For Each ws In ActiveWorkbook.Worksheets
ws.Visible = xlSheetVisible
Next ws
End Sub
Remove a password on a protected sheet
- Open the XLSX as a ZIP
- Navigate to
xl
→worksheets
- Edit the sheet, if trouble to find it: search for
sheetProtection
- Remove everything between
<sheetProtection ... />
. This is usually just before</sheetData>
- Save the
sheetX.xml
file in the XLSX and reopen the Excel!
Data
- Date & Time: convert UNIX epoch to Excel format →
(A1/86400)+25569+(-5/24)
with A1 the data cell - Data validation: List without a Range → Use comma:
xx,yy,zz
- New line in a formula:
CHAR(10)
PowerQuery / PowerBI
- Comment:
//
or/*
and*/
- Library:
=#shared
- Define PK:
Table.AddKey
Word
Word UI
- Show Fields code: Shift-F9
Outlook
Mails
-
In a shared mailbox, put deleted items in the shared mailbox Deleted item box - Source
- In the registry, go to
HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Outlook\Options\General
- Create/Edit a DWORD
DelegateWastebasketStyle
- Set it to:
- 8 = Stores deleted items in your folder.
- 4 = Stores deleted items in the mailbox owner’s folder.
- In the registry, go to
Calendar
- Clear “Recent Location” drop-down list → Delete keys in:
HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Outlook\Preferences\LocationMRU
Teams
- Remove a Teams meeting from an existing invite: Add to the Ribbon the Don’t Host Online command.
PowerPoint
Toolbar
- A great toolbar: Instrumenta
Master slides
- Change default slide when creating new slide: put this slide as the 3rd item in the master view. Source