

- #Microsoft expression web alternative for mac full#
- #Microsoft expression web alternative for mac windows#
#Microsoft expression web alternative for mac full#
However, you need to know the full shortcut. In Office 2013 and Office 2010, most of the old Alt key menu shortcuts still work, too. Press Alt again to see KeyTips for the options for the selected tab. For example, press Alt+H to open the Home tab, and Alt+Q to move to the Tell me or Search field. You can combine the Key Tips letters with the Alt key to make shortcuts called Access Keys for the ribbon options. Press the Alt key to display the ribbon shortcuts, called Key Tips, as letters in small images next to the tabs and options as shown in the image below. For example, on the Home tab, the Number group includes the Number Format option. The ribbon groups related options on tabs. This table lists the most frequently used shortcuts in Excel. Keyboard shortcuts in Office Add-ins task panes Keyboard shortcuts for refreshing external data Keyboard shortcuts for working with data, functions, and the formula bar Keyboard shortcuts for making selections and performing actions

Keyboard shortcuts in the Paste Special dialog in Excel 2013
#Microsoft expression web alternative for mac windows#
Get these keyboard shortcuts in a Word document: Excel 2016 for Windows keyboard shortcuts If an action that you use often does not have a shortcut key, you can record a macro to create one.ĭownload our 50 time-saving Excel shortcuts quick tips guide. Press Ctrl+F, and then type your search words. You can always ask an expert in the Excel Tech Community or get support in the Answers community.To quickly find a shortcut in this article, you can use the Search. =SWITCH(A3,1,"Sunday",2,"Monday",3,"Tuesday")īecause there's no match and no else argument, SWITCH returns #N/A! =SWITCH(WEEKDAY(A2),1,"Sunday",2,"Monday",3,"Tuesday","No match")īecause A2=2, and Monday is the result argument corresponding to the value 2, SWITCH returns Monday If you need to, you can adjust the column widths to see all the data. If the formulas don't show results, you can select them, then press F2 > Enter. You can copy the example data in the following table and paste it in cell A1 of a new Excel worksheet to see the SWITCH function in action. Note: If there are no matching values, and no default argument is supplied, the SWITCH function returns the #N/A! error. If there's a match, what do you want to return as a result? In this case, it would be Sunday for 1, Monday for 2 and Tuesday for 3.ĭefault value to return if there's no match found. What value do you want to match? In this case, it's 1, 2 and 3. Value to switch? In this case, WEEKDAY(A2) equals 2. Where you can evaluate up to 126 matching values and results. =SWITCH(Value to switch, Value to match1., Value to return if there's a match1., Value to return if there's no match) In its simplest form, the SWITCH function says: Default must be the final argument in the function.īecause functions are limited to 254 arguments, you can use up to 126 pairs of value and result arguments. The Default argument is identified by having no corresponding resultN expression (see examples).

ResultN and must be supplied for each corresponding valueN argument.ĭefault is the value to return in case no matches are found in the valueN expressions. ResultN is the value to be returned when the corresponding valueN argument matches expression. ValueN is a value that will be compared against expression.

SWITCH(expression, value1, result1, ,…)Įxpression is the value (such as a number, date or some text) that will be compared against value1…value126.
