=A1*C1
To carry out the multiplication directly in the cell type in the formula preceded by = and using asterisks (*) for the multiplication symbol. For example, =240*4. To multiply the contents of two existing cells use a formula similar to =B12*C12. To avoid mistakes click on the cell in question, rather than typing its address.
The formula you use depends upon what you are trying to calculate. If you want to multiply two cells (e.g. A1 and C2), the formula would be =A1*C2.
The answer is in cell C1.Put "this" in cell A1.Put "question" in cell B1.Put the following formula in C1: =A1&" "&B1
In Excel, you can multiply items by using the multiplication operator *. For example, to multiply values in cells A1 and B1, you would enter the formula =A1*B1 in another cell. Alternatively, you can use the PRODUCT function, such as =PRODUCT(A1, B1), to achieve the same result.
To enter a file name into a cell in Excel, you can use the formula =CELL("filename", A1), where A1 is any cell in the workbook. This formula retrieves the full path of the workbook, including the file name. If you only want the file name without the path, you can use =MID(CELL("filename", A1), FIND("[", CELL("filename", A1)) + 1, FIND("]", CELL("filename", A1)) - FIND("[", CELL("filename", A1)) - 1).
=IF(A1>4,150,75) In this case if A1 is 4, then 75 will show. If you want 150 to show when A1 is 4 then the formula would be: =IF(A1>=4,150,75)
If you want to compare the contents of cell A1 on Sheet1 to A1 on Sheet2 and put an X in cell B1 on Sheet1, then in cell B1 on Sheet1 you would put the following formula: =IF(A1=Sheet2!A1,"X","")
You use the * key, which can be found on the numeric keypad.
You can divide by anything except zero. So you can use a number or a cell with a number in it. You use the / symbol for division. So your formula to divide something in cell A1, which must go into a cell other than A1, could be like either of the following: =A1/10 =A1/B2
A simple formula put into D1 could be: =A1*B1 Which is asking the numerical data in cell A1, be timed by the numerical data in cell B1, and show the answer in cell D1.
To make a cell auto-fill onto another worksheet in Excel, you can use a simple formula. For example, if you want cell A1 from "Sheet1" to appear in cell A1 of "Sheet2," you would go to "Sheet2," select cell A1, and enter the formula =Sheet1!A1. This links the two cells, so any changes in "Sheet1" A1 will automatically update in "Sheet2" A1.
Assuming "take away" means to subtract, here is the formula for subtracting the contents of cell B1 from the contents of cell A1:=A1-B1