answersLogoWhite

0

📱

Microsoft Excel

Excel is a spreadsheet application developed and distributed by Microsoft Corporation for computers using the Microsoft Windows and Mac OS X operating systems. It features graphing tools, chart wizards, calculations, formatting options, and pivot tables.

9,788 Questions

How do you use multiple IFs in Excel?

It really depends on what it is you are trying to do. If you have a combined set of multiple conditions, using IF functions may work. IF functions may be nested, meaning that another IF function could form part of the True or False values. As an overall example, if in the cell B3 you had a value which must be multiplied by 10 if it is over 100 or else multiplied by 5 if greater than 50 or by 3 if less than or equal to 50, we will then as part of the False one IF value have to evaluate if B3 is over 50 or not, having already discovered that it is less than 100. The function will include a nested IF function as its False value which must include the same 3 component parts as any IF function:

=IF(B3>100, B3*10, IF(B3>50, B3*5, B3*3) )

Our Condition and True values are the same as a normal IF, but our False value is itself an IF function having a Condition, True and False values. Note that we also have 2 brackets at the end to close the 2 IF functions. The final bracket corresponds to the opening of the first IF.

When using multiple IF functions you will always have one less IF than the amount of conditions. In the example given we had 3 possible categories, but the formula only required 2 IF functions. Every IF eliminates one possibility. When the second last possibility has been eliminated, as there is only 1 remaining possibility left, it does not need a further IF function to test if it is True. The final possibility never needs to be tested for. In our example we had 3 possibilities. If our value is not over 100 and not over 50 then it must be less than 50, so we do not need to check for that possibility.

IF functions may be nested quite deeply at times and require careful thought at all times. It is easy to make a mistake, so they should be thoroughly tested. It is not a good idea to nest too many IF functions. In some cases, using another method might be more appropriate, such as using VLOOKUP. It really depends on what it is that you are trying to achieve, so each case is different.

What does Proficient in Excel means?

It means that you have a very good knowledge of Excel. It means you can do a lot of things with it, even some advanced things. So you would have no difficulty using it in a job where it is used for practical things.

What are disadvantages of embedded charts?

They don't always look as good, as they are floating over the data. They don't have fixed positions, so it can be harder to find them on a large sheet. You often have to move them as you add more data into the worksheet. It is more difficult to manipulate an embedded chart that a chart sheet. They are usually small, so don't always give a good representation of the data.

If you want to select the first and third row in the table in the accompanying figure is like the first row and then hold down the key while selecting the third row?

To select things like rows, columns or cells that are not beside each other, press and hold the Ctrl key when selecting them. These are referred to as being non-contigous.

What is are equations in a worksheet?

Spreadsheet equations help you get work done more efficiently. If you enter a new set of data, the equations will automatically adjust to the data you just put in.

How do you create a sequence of numbers in Excel?

One way would be to type in the first two numbers of your sequence. Then select both numbers. Then using the Fill Handle, which is the black square in the bottom corner of the selected cells, drag down and the numbers will start to fill. So if you had 5 and 10 as the first two numbers, then it would continue on to show 15, 20, 25 etc.

F61 is a relative reference or absolute?

F61 is a relative reference in Excel. $F$61 is an absolute reference.

Where does the formula bar appear in a worksheet?

It is just above the worksheet and below the toolbars.

What is the term to identify a number entered on a spreadsheet?

Numeric is anything related to numbers. Spreadsheets mainly focus on numbers, so the term numeric comes up regularly, like talking about numeric data, which would mean some numbers in the spreadsheet.

Which of the following is an external reference indicator in a formula?

It is a reference in one workbook to a cell or range in another workbook. So the reference is outside, or external to, the current workbook. To do it involves having the name of the workbook in square brackets, then the name of the sheet, then an exclamation mark and then the cell reference. So it could be something like this:

=[Invoices.xlsx]Sheet3!C14

What types of documents can be created in excel?

Either *docs or docx depending on which version (year) of office you use.

What is the bar that displays when the contents of a window are not completely visible?

It is called the slider or scroll bar and if you click and move the slider up or down the partially visible contents of the window scroll up or down

What is xls file format?

A document that is created by Microsoft Excel. Excel is a spreadsheet maker.

The vertical division in a spreadsheet?

They are called rows and rows are numbered.

Is there any hidden game in Excel 2003?

There are no hidden games in Microsoft Excel after Microsoft Excel 2000, so there are none in Microsoft Excel 2003.

Why was Microsoft Excel developed?

Excel is an electronic spreadsheet program that can be used for storing, organizing and manipulating numbers and data. It's an amazingly flexible program to find answers to logic based questions. It is a program that can compile lots of data into graphs and tables.

What is the other name for MS Excel?

MS Excel has no other name. It is a spreadsheet application developed by Microsoft Corporation. It is part of a suite of products called Microsoft Office. MS stands for Micro Soft. Excel is a spreadsheet program which allows you to enter and calculate information for reports.

How many cells are there in a single worksheet?

The original version of Excel had a maximum limit of 16,777,216 (16.8 million) cells within a single worksheet and that continued to be the worksheet limit until it was later expanded in version 2007 to the current limit of 17,179,869,184 (17.2 billion) cells.

Originally within each worksheet, Excel provided columns A to IV, which is 256 (2^8) columns; and 65,536 rows (2^16); therefore 256 x 65,536 = 16,777,216 (2^24).

As mentioned, in version 2007 the worksheet maximum size limits were greatly expanded, providing columns A to XFD, which is 16,384 (2^14) columns; and 1,048,576 rows (2^20); therefore 16,384 x 1,048,576 = 17,179,869,184 (or 2^34).

What happens in edit mode in Excel?

It enables the changing of data in a cell so that something new can be put in, or what is there can be changed. Pressing F2 activates Edit mode, putting the cursor in so that changes can be made.

What is conditional formatting and when would you use it?

Conditional formatting is something you would apply to a range of cells that contains a value that you would like to highlight. You would click on the Conditional Formatting button, which is located under the "Home" tab of Excel. After clicking on the button, you could choose the options to either highlight the cell or just the text or numbers within.

You can use this function to highlight a particular rule within a range of cells, or within a whole spread sheet, or a workbook.

Information found in the Shelly Cashman Series of Microsoft Office 2007, Introductory Concepts and Techniques. Written by Gary B. Shelly, Thomas J. Cashman, and Misty E. Vermaat; Not sure what year it was written in, my daughter tore the page on which it states.

How to use the average function to calculate the average quarterly revenue in excel 2007?

Once you have your quarterly revenue figures, you need to use the AVERAGE function to get it. Specifically how you do it will depend on how your data is arranged, like in what cells they are in. So if your 4 quarterly revenues were in A4, A7, A10 and A13, your function would be:

=AVERAGE(A4, A7, A10, A13)

What is the page setup that prints the document vertically?

go to printer properties..

in general tab, click on printer preferences..

go to basic preferences..

choose virtical alignment..

this process could be change in different printers..

What function a spreadsheet have to help organize data?

Spreadsheets have many functions to help organise data. Organising data is one of the purposes of a spreadsheet, particulary if it is a lot of numerical data. If it is things like names, address etc., a database can be better. Spreadsheets can do things like sort data and extract data. They can lay data out in a tabular format using the rows and columns in the spreadsheet. There are some specific database functions that can be used in a spreadsheet that are used for organising data.

Trending Questions
What view shows a worksheet divided into pages? When a melody such as Row Row Row What if your Boat is harmonized by chords the musical texture is said to be? What is a paste link? What key can you use to move from one part of a table to another? When you use the Formula AutoComplete list box to enter a formulathe first portion of the function is inserted in the active cell and the required syntax for the arguments appears in? What action do you perform on a data source in order to merge only certain records? What is adjacent range in Excel? What kind of chart shows patterns or relationships between two or more sets of values much like an XY chart except the size of the data marker is determined by a third value? What is use of hand rail column? How do you make a lineweaver-burk plot in Excel? What is Autofilter in Microsoft Excel? What term is used to describe an error that occurs when numbers are moved to the right or left in an amount column? Does Excel allow you to change the color of worksheet tabs? What are the parts of ms exel windows 2007? How many bars are there in Microsoft Excel? What is the value of a 1969 ruger super blackhawk with a leupold 2x scope in excellent shape ser. no. 80-13528? What type of complex problems of situations would you think of that would use your executive function capabilities? In excel What is included in the function for library group? Which type of reference work summarizes knowledge that is found in original form elsewhere? What formatting in Excel is used when you assign a format to all the cells in all the worksheets in a workbook?