|
-
Jun 6th, 2008, 05:02 PM
#1
Thread Starter
Lively Member
-
Jun 7th, 2008, 04:02 AM
#2
Re: [EXCEL] Changing the Modulus Range Using CONCATENATE()
Not sure what are the addresses of cells in used, I supose that: cell F20 = 80, cell F21 = 350
You can use OFFSET() or INDIRECT() to have formulas like this:
=SLOPE(OFFSET(Q1, F20-1, 0, F21-F20+1, 1), OFFSET(K1, F20-1, 0, F21-F20+1, 1))
=INTERCEPT(OFFSET(Q1, F20-1, 0, F21-F20+1, 1), OFFSET(K1, F20-1, 0, F21-F20+1, 1))
or
=SLOPE(INDIRECT("Q" & F20 & ":Q" & F21), INDIRECT("K" & F20 & ":K" & F21) )
=INTERCEPT(INDIRECT("Q" & F20 & ":Q" & F21), INDIRECT("K" & F20 & ":K" & F21) )
Replace F20 and F21 with your actual cells that store 80 and 350. You may see to use INDIRECT() is easier to understand.
-
Jun 8th, 2008, 09:13 AM
#3
Thread Starter
Lively Member
Re: [EXCEL] Changing the Modulus Range Using CONCATENATE()
Thanks for the help koolsid & anhn! I appreciate it. Anhn's method is what I was looking for, since I don't want to add any code to the workbook. Thanks again!!
~AJ
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|