Advertisement
Guest User

Untitled

a guest
Dec 20th, 2014
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1.  
  2. To keep Excel from dynamically moving the target range for a function, use the $ in front of the col and row references.
  3.  
  4. On a windows machine, you can toggle through the "lock down" methods with the F4 key.
  5.  
  6. A '$' will lock down the reference to an absolute one versus a relative one. You can lock down the column, row or both. Here is a locked down absolute reference for your example.
  7.  
  8. (A1-MIN($A$1:$A$30))/(MAX($A$1:$A$30)-MIN($A$1:$A$30))
  9.  
  10.  
  11. Side note: I think it works this way for essentially all modern spreadsheet programs - I know it does for OpenOffice.org Calc and Google Docs' spreadsheet.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement