Determine what column to calculate data from

P

psimatrix

I am working on a spreadsheet and I need to have a column based on dat
from X previous columns. Explained another way:

Column D = (Column D - X Columns)

X = Spreadsheet2!A1


The usage of this is to try and calculate how many people unsubscrib
from a website in a given month (Column D) if the average user a membe
for X amount of months. So I need to "look back" X amount of months eac
month and determine how many users will be unsubscribing
 
J

Jason Morin

Try this in column D:

=OFFSET(INDIRECT("RC",0),,-Spreadsheet2!A1)

HTH
Jason
Atlanta, GA
 
H

Harlan Grove

Jason Morin said:
Try this in column D:

=OFFSET(INDIRECT("RC",0),,-Spreadsheet2!A1)
....

Or save a function call with

=INDIRECT("RC["&-Spreadsheet2!A1&"]",0)
 

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