- Joined
- Nov 22, 2009
- Messages
- 1,434
- Reaction score
- 208
I've been pulling data and maintaining it in this manner...
-----------a-----------------b-----------------c-------------d
1--Last Sold Price----Last Sold Year----Sold Price----Sold Year
2--$100,000-------------2006-----------$200,000--------2009
3--$50,000---------------2001-----------$80,000---------2009
4--$200,000-------------2004-----------$300,000--------2008
What I need to determine is the difference between the sold price in dollars, and as a percentage.
Obviously, to determine the percentage, I must first determine the difference.
The formula that's been working for me is =sum(c2-a2). Should I have applied that formula to cell e2 in this example, the end result would have been $100,000.
The issue with this is that I must constantly replace the number for the row, and want to know what the correct variable to add is to factor the row of the current cell into the calculation.
Logical variable attempts such as =sum(c$-a$), =sum(c*-a*), etc. did me no good. Neither did inserting row() after the letter
i.e. - "=sum(c(row())-(a(row())"
Any suggestions would be VERY much appreciated!
Edit: Please excuse all the hyphens - the spaces did not format correctly thus appearing the table to appear all incorrect.
-----------a-----------------b-----------------c-------------d
1--Last Sold Price----Last Sold Year----Sold Price----Sold Year
2--$100,000-------------2006-----------$200,000--------2009
3--$50,000---------------2001-----------$80,000---------2009
4--$200,000-------------2004-----------$300,000--------2008
What I need to determine is the difference between the sold price in dollars, and as a percentage.
Obviously, to determine the percentage, I must first determine the difference.
The formula that's been working for me is =sum(c2-a2). Should I have applied that formula to cell e2 in this example, the end result would have been $100,000.
The issue with this is that I must constantly replace the number for the row, and want to know what the correct variable to add is to factor the row of the current cell into the calculation.
Logical variable attempts such as =sum(c$-a$), =sum(c*-a*), etc. did me no good. Neither did inserting row() after the letter
i.e. - "=sum(c(row())-(a(row())"
Any suggestions would be VERY much appreciated!
Edit: Please excuse all the hyphens - the spaces did not format correctly thus appearing the table to appear all incorrect.
Last edited: