cancel
Showing results for 
Search instead for 
Did you mean: 

Spreadsheet forumulae query - help please

FIXED
shutter
Community Veteran
Posts: 22,290
Thanks: 3,805
Fixes: 66
Registered: ‎06-11-2007

Spreadsheet forumulae query - help please

 On a spreadsheet I am trying to lay out.... I have column A   ( quantity value)   (150 )       column B (cost per unit value)  0.29p  column C total of  (A times B )

So, that would be =SUM(A*B)     giving me a  total value...  43.5p

How do I expand that formula to increase the final "total value" figure by 5%.... and have the result in Colum C as the total including the 5% - not as a 5% in a new column.

5 REPLIES 5
MisterW
Superuser
Superuser
Posts: 16,047
Thanks: 6,065
Fixes: 437
Registered: ‎30-07-2007

Re: Spreadsheet forumulae query - help please

Fix

Column C is  just =A*B*1.05

no SUM needed , or are you also summing all the rows for a total ?

Superusers are not staff, but they do have a direct line of communication into the business in order to raise issues, concerns and feedback from the community.

RobPN
Seasoned Hero
Posts: 5,212
Thanks: 2,733
Fixes: 13
Registered: ‎17-05-2013

Re: Spreadsheet forumulae query - help please

I suspect you're going about this the wrong way.

I suspect "SUM" not required to multiply 2 (single) values together.

I suspect you should be referring to 'cell' references not "A" and "B" in your forumula in column C, e.g. A1*B1.

Why not just include *1.05 to the formula in col C to increase the value by 5%, i.e. A1*B1*1.05?

 

Edit: @MisterW types faster than me.

shutter
Community Veteran
Posts: 22,290
Thanks: 3,805
Fixes: 66
Registered: ‎06-11-2007

Re: Spreadsheet forumulae query - help please

@MisterW  Thank you for the speedy reply...

At the moment, it is only for the single entry as described... which will suffice my needs for now.
I do have some info on forumulae, but could not find the answer to this problem

Thanks

zpeterk
Grafter
Posts: 446
Thanks: 9
Registered: ‎14-04-2007

Re: Spreadsheet forumulae query - help please

(a*b)*1.05
Champnet
Aspiring Hero
Posts: 2,874
Thanks: 1,079
Fixes: 14
Registered: ‎25-07-2007

Re: Spreadsheet forumulae query - help please

Good practice to use brackets, forces a computer to think like a human……..