How do I stop excel updating cell references upon insertion of new data -


i have spreadsheet takes in parameters update every day. inserted separate worksheet holds inserted data. use data take average of latest 5 entries smooth out day day variation: e.g.

=((b1*(100-(average(data!g$2:g$6))))/(343.805764))

when insert new data line, formula updates to:

=((b1*(100-(average(data!g$3:g$7))))/(343.805764))

how can prevent update?

if need "fix" range - regardless of default behaviour of excel change row-numbers if insert new rows - try working hard-coded ranges using index

=((b1*(100-(average(index(data!g:g,2):index(data!g:g,6)))))/(343.805764)) 

Comments

Popular posts from this blog

java - Run spring boot application error: Cannot instantiate interface org.springframework.context.ApplicationListener -

python - pip wont install .WHL files -

Excel VBA "Microsoft Windows Common Controls 6.0 (SP6)" Location Changes -