VBA - Making Cell a Constant

B

bforster1

I have a program that allows the user to insert additional revenue an
expense lines. However, whenever a new row is inserted my formulas ar
thrown off. How do I make a cell constant.

Example

C11/C14 ...... when ever I insert a new row C14 becomes C15 and I nee
the formula to change accordingly.

Any ideas..thanks
 
D

Dave Peterson

if you're trying to make your formula always point to cell C14--no matter how
many rows/columns you insert/delete, you can do something like this:

=C11/INDIRECT("c14")

You could do the same with C11 if you wanted.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top