Tell me more ×
Web Applications Stack Exchange is a question and answer site for power users of web applications. It's 100% free, no registration required.

I have the following formula in a Google Spreadsheet:

=IF(I11="VSS";G11;IF(I11="MCS";0;G11*Totais!C30))

I would like to freeze Totais!C30 when I click on bottom right of cell and drag down.

Currently when I do this, Totais!C30 change to Totais!C31, Totais!C32, C33...

share|improve this question

2 Answers

up vote 3 down vote accepted

By adding a $ in front of the column & row you can lock that specific area up when copying.

Example: Totais!$C$30 would lock down when copying anywhere else in the document. Totais!$C30 would lock down moving column to column. Totais!C$30 would lock down when moving down rows.

share|improve this answer
Thank you very much! – Victor Santos Jun 11 '12 at 15:11

Don“t know how to do post the same question with a more specific situation so here it goes (any correction would be most appreciated). My spreadsheet is as shown in next images. You can see the formula i used in cell C5 and as you can notice i'm trying to freeze the reference to cell P15. But when i create a new row at row 8 (see image 2) Google-s spreadsheet seems to be ignoring my request to freeze reference to cell P15 done in formula contained in cell C5! Notice that i'm using frozen rows for the first 5 rows. Thanks

enter image description here

enter image description here

share|improve this answer
You should clean up your answer a little - that first sentence is hard to read - and you'll get a +1 – Vidar S. Ramdal Nov 6 '12 at 13:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.