Computers & Internet Logo

Related Topics:

Robert Levine Posted on Mar 13, 2018

Need a formula to add and subtract in google sheets

5 Related Answers

A

Anonymous

  • Posted on Dec 12, 2007

SOURCE: EXCEL SPREADSHEET FOR INVENTORY

Dear pauline, you can link cells in formula bar to see immediate effect of additions and subtractions in dependent boxes.

Like for example you add three numbers in three boxes A1, B1, C1 and answer is supposed to go in D1, just type =SUM(A1+B1+C1)
in D1.

now when you will change the values of a b and c boxes, the value of d1 will automatically change. for adding more numbers you can leave boxes empty so that you can fill in later to see the change in the sum box.

please press fixya if that has helped you.

Ad

DavidPerich

  • 272 Answers
  • Posted on Dec 29, 2007

SOURCE: Formula required

On sheet 4, select cell A1 and press "=" (don't press enter key).
Select the sheet 1 tab and click on the cell at the top left corner of your sheet 1 data. (dont press enter yet.) Press the "+" sign and then click on the Sheet 2 tab. Select the cell on sheet 2 at the top left corner of the data table on that sheet. Now press "+" again. Now select the sheet 3 tab and select the top left corner of the table there. Finally, press the enter key and you will be back on sheet 4. Cell A1 on sheet 4 will show the sum of the first cells of the tables on sheets 1-3.
Here's how to copy the formula on sheet 4/A1 to the other cells:
Select cells A1:A12 on sheet 4. (in other words, highlight all the cells that will become the top row of the table on sheet 4.) Now press Ctrl-R. This will copy the formula in cell A1 to all the highlighted cells to the Right of it. Finally, highlight the area that will become your table on sheet 4 (12 colums, 10 rows). Press Ctrl-d. This will copy the formulas in the first row Down to all the cells in the highlighted area below.

A

Anonymous

  • Posted on Jul 15, 2008

SOURCE: Formulas

how to addition

onomou

onomou

  • 24 Answers
  • Posted on Oct 04, 2009

SOURCE: adding and subtracting lengths of measurements

You can use the units menu (2nd > 3) to place a unit after some number you want to qualify as being an unit, or you can just type them in like 5_ft + 6_in. Note that you need to add on each part if you are doing mixed measurements; there is no _ft_in combination. So just add each manually - in your case you would do (5_ft + 6_in) - (2_ft + 8_in)

Saigua

Steve Nordquist

  • 982 Answers
  • Posted on Nov 14, 2009

SOURCE: I have an assignment where 4 worksheets were

I'd say you need to pay better attention to the Excel or other spreadsheet books and help you have handy, and categorize your problem according to the behavior you get inconsistent with the suggested solutions already available.

No excuse for your laziness!

Ad

Add Your Answer

×

Uploading: 0%

my-video-file.mp4

Complete. Click "Add" to insert your video. Add

×

Loading...
Loading...

Related Questions:

0helpful
1answer

How do i subtract two cells and progress down a row by a day so the next day the formula subtracts the current day and previous day?

You have to start the sequence with a slightly different formula because there is no preceding value for Monday.
25525374-qztzwsd5tae24twsq5kxbvm0-3-0.jpg The rest of the formulas are running totals so they are the same just dynamically duplicated down the column add infinitum.
25525374-qztzwsd5tae24twsq5kxbvm0-3-2.jpg Just duplicate the the formula Picking up the value form the result column and subtracting the next running subtraction value.
0helpful
1answer

I have a spreadsheet set up with columns which have dollar amounts which need to be added or subtracted. How can I set up a formula to do this automatically without me manually doing it on each line.

Best bet would be to utilize the "Help" function for formulas. You will need to set up a formula for each column you would like to format. Or simply add a Function (123-456) or (123+123) That way the cell will know the math. Good Luck
1helpful
2answers

What are the formulas in grading the grades uisng microsoft excel

Formulas are used to specify calculations based on values in designated cells. Excel supports basic calculations as well as statistical, trigonometric and other specialized functions.

Formulas used in Excel must follow a certain syntax.

  1. All formulas begin with an equals sign (=).
  2. Some formulas use operands such as +,-, *,/ for addition, subtraction, multiplication or division.
    For example, the formula =A1+A2+A3 would add the contents of cells A1, A2 and A3.
  3. Other formulas refer to different functions such as SUM, AVERAGE and others.
    For example, the formula =SUM(A1:A3) would add the contents for the range A1 through A3.
  4. Formulas can be combined with operands.
    For example, the formula =10*SUM(A1:A3) would add the contents cells A1 through A3 and multiply them by 10.
  5. Functions can be nested within each other.
    For example, the formula =SQRT(10*SUM(A1:A3)) would take the square root of ten times the sum of cells A1 through A3. When functions are nested, it is important that the number of left parentheses match the number of right parentheses.
1helpful
3answers

Ms-office

Subtraction can be done in two ways in Office using the following formulas in the formula (fx) bar:
  1. =A1-A2
  2. =SUM(A1,-A2)
The above formulas refer to cell reference A2 subtracted from A1. As usual, you can use number values instead of cell references.

The SUM formula subtracts by changing the sign of the reference. Remember the sign rules, and thus - -x is in effect +x.
0helpful
1answer

Problem coming in subtraction

You just have to use the subtraction formula. The formula is as follows:

=A1 - A2

Where A1 and A2 are cells that contain the data that you would like subtracted. If you want just two numbers subtracted you can type them directly:

=20 - 10

for more information look at the subtraction section of the following link.

http://www.homeandlearn.co.uk/ME/mes5p1.html
4helpful
1answer

Electricity bill coding in java

First think how you would solve this problem yourself on a piece of paper. Then try programming it using the things you learned (if they've given you this assignment without teaching you to multiply, subtract and use if's, drop the course).
Well here is an idea.

Take the total kilowattage and send it to a function. What the function will do is subtract 14KW from the total Kilowattage and add the amount for the first 14KW then subtract 85KW from the total KW and add the amount for the 85KW. But once you subtract the number of KW from the total make sure to check if the total KW isn't negative, if so just break out of the function and return the total due.

Or if you have formula for how much the rate grows over how many miles.

For example lets say the rate grows by $1 every time the KW doubles you could have something like

int rate = 1; //Begining rate
int KW = 14; //First flat rate
int amount; //total amount they have to pay
while(totalKW > 0)
{
totalKW -= KW; //subtract the first rate
if(totalKW <= 0) //check if too much subtracted
break; //if so break
amount += rate; //add the rate to the total

rate += 1; // Add $1 to the rate every time
KW *= 2; // KW is doubled
}
0helpful
1answer

Computer

Any formula in Excel starts with the equals sign ("="). This is how Excel distinguishes between formulas and literal values. Knowing this, you can create lots of formulas using the usual operators of +, -, * and / for addition, subtraction, multiplication and division, respectively. Please see the examples below.

Add 1 + 1: =1+1
Add the contents of cell A1 to the contents of cell B1: =A1+B1

Subtract 2 - 1: =2-1
Add the contents of cell A1 from the contents of cell B1: =B1-A1

Multiply 1 times 2: =1*2
Multiply the contents of cell A1 times the contents of cell B1: =A1*B1

I hope this resolves the question. If not, please let me know.
0helpful
1answer

EXCEL SPREADSHEET FOR INVENTORY

Dear pauline, you can link cells in formula bar to see immediate effect of additions and subtractions in dependent boxes.

Like for example you add three numbers in three boxes A1, B1, C1 and answer is supposed to go in D1, just type =SUM(A1+B1+C1)
in D1.

now when you will change the values of a b and c boxes, the value of d1 will automatically change. for adding more numbers you can leave boxes empty so that you can fill in later to see the change in the sum box.

please press fixya if that has helped you.
Not finding what you are looking for?

90 views

Ask a Question

Usually answered in minutes!

Top Google Computers & Internet Experts

Grand Canyon Tech
Grand Canyon Tech

Level 3 Expert

3867 Answers

ADMIN Andrew
ADMIN Andrew

Level 3 Expert

66827 Answers

Kolbrun...

Level 3 Expert

1228 Answers

Are you a Google Computer and Internet Expert? Answer questions, earn points and help others

Answer questions

Manuals & User Guides

Loading...