Link to home
Start Free TrialLog in
Avatar of Barbara69
Barbara69Flag for United States of America

asked on

How to create a formula using absolute and mixed cell references in Excel 2010?

I need to create a formula to calculate the percentage of the total for B4 using absolute and mixed cell references with the result in H4. I then need to copy the formula from H4 to I4:J4 to get the percentages for C4 and D4. After that I need to copy the formulas from H4:J4 to H5:J14. How do I do that?

    B4            C4            D4          E4 (total of B4-D4)
    31           68           77                   176
Avatar of Saqib Husain
Saqib Husain
Flag of Pakistan image

You would need

=A4/$D4%

in H4
Hi Barbara69 and Mr. Saqib,

I guess =A4/$E4% in H4

See attached file


Thanks
Sum-and-percentage.xlsx
ASKER CERTIFIED SOLUTION
Avatar of Rob Henson
Rob Henson
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Barbara69

ASKER

RobHenson,

Isn't your answer considered relative and mixed references? Is there a way to do the calculation using absolute and mixed references?
Absolute reference: address never changes, $ sign with both row and column address

Mixed reference: only one of row and column address changes, $ sign with either row or column address

Relative address: both row and column change, no $ sign



I do not think you need absolute reference in your calculations.

An example of use of absolute reference could be currency conversion rate. This would be any defined cell and this cell would be referred to from anywhere in the spreadsheet. This is where you would expect an "Absolute reference".
To include an absolute reference in this question (which is getting to sound like homework by the way!) would be to reference a further cell for diving by 100 to convert to percentage, eg:

=IF($E4=0,0,B4/$E4)/$F$1

Where F1 contains 100

Thanks
Rob
Thanks Rob.