Personal.xlsb
workbook. VBA equivalent | ||
home | move to first cell in row | |
shift + F11 or alt+shift+F1 | Inserts a new worksheet to the left of the currently acctive one. (The current worksheet can be deleted with alt+h -> d -> s ) | sheets.add |
ctrl + pageUp / ctrl + pageDown | Rotate between worksheets. | |
ctrl + space / shift + space | Select entire rows / columns | |
ctrl+9 / ctrl+0 | hides selected rows / columns | |
ctrl+1 | opens the format cells dialog. | |
ctrl+d , ctrl+r | Copy value above/left of the cell into the current cell. | |
ctrl+shift+* or ctrl+a | Selects a rectangular region: the first combination selects a «contguous» range, the second combination the used range of a worksheet | range.currentRegion , activeSheet.usedRange . |
ctrl+t | Turn selected region (possibly created with ctrl+shift+* ) into an Excel table | |
ctrl+shif+-t | Add total column to an Excel table | |
ctrl+shift-L | Turn on/off filtering for specific values (triangle in header row) | selection.autofilter |
ctrl+shift + = | Shift cells down | selection.insert shift:=xlDown |
ctrl+shift+f or ctrl+1 | Opens format cells popup | |
ctrl + - | Shift cells up | selection.delete shift:=xlUp |
ctrl+q | opens the query input box (which allows to search for keywords) | |
ctrl+F3 | opens name manager (which is found in the ribbon/menu under Formulas -> Defined Names -> Name Manager). | |
F9 with and without ctrl , shift , alt | Perform or force formula recalculation | |
shift+F10 | opens the context menu. | |
alt+F11 | opens the Visual Basic Editor (and when in the VBA Editor, alt-Q closes it) | |
alt+= | inserts =sum(…) | |
ctr+shift+… | Apply predefined formats to the selected range: 1 = comma, 2 : time, 3 : date, 4 : currency, 5 : percent. 6 : scientific | .numberFormat = … |
ctrl+shift+F3 | creates named ranges from a selection (possibly created with ctrl+shift+* ). | range.createNames |
ctr+shift+enter | enters an array formula. | |
ctrl+F1 | shows/hides the Ribbon bar. | |
ctrl+backtick (gravis) | Shows hides formulas in cells | activeWindow.displayFormulas = true (or false ) |
alt+f i n enter
will do. alt+…
combinations select a tab and then allow to select an item on the tab with another key which is displayed next to the element: alt+f
file page, use backstage view
alt+h
home tab
alt+p
page layout tab
alt+n
insert tab
alt+m
formula tab
alt+w
view tab F10
shows the keys to be pressed next to the respective tab-selector. ctrl+F1
shows or hides the Ribbon bar. sub auto_open() application.onKey "{F12}", "nameOfSubToCall" end sub
D5
syntax. (fourth column, 5th row) R[-3]C[2]
which is the value of the cell 3 rows above and 2 columns to the right. R4C2
which represents the cell in the 4th row and 2nd column. application.referenceStyle = xlR1C1 ' or application.referenceStyle = xlA1
row
and column
and address
. F2
on one or more unlocked or unprotected cells. <ESC>
brings Excel back to the ready state. workbookConnection
object. /e | Start Excel without startup splash screen and without opening empty workbook. (/e = embed). Note, there is also the possibility to turn of the start screen under File -> Options -> General (start up options) |
/p p:\ath\to\working\dir | Specify the a working dir, for example used when using the Save As functionality) |
/s | Bypass all files that are located in startup directories (such as, for example, the %appdata%\Microsoft\Excel\XLSTART directory) (/s = safe mode) |
/a ProgId | |
/x | Start Excel in a new process. |
sc
, the command line spread sheet. application.goto selection.find("xyz")
lookAt
option must be used: application.goto selection.find("xyz", lookAt := xlWhole)
SPREADSHEETCOMPARE.EXE
is a tool that allows to compare two workbooks. xlsx