Cell Value and TREND

pulmonaryKid

New Member
Joined
Jul 27, 2011
Messages
3
Hi everyone, I'm a new poster though I've lurked intermittently in the past.

I'm using the following :

="=Sheet1!B"&ROUND(TREND({9,29},{16,20},ROW()),0)

I'm attempting to display the value of Sheet1!B9 in Sheet2!B16

And copy/paste the formula so that the value for Sheet2!B20 will show the value of Sheet1!B29 and so forth...

Unfortunately, rather than showing the value, the cell is showing text...

So Sheet2!B16 cell shows the text "=Sheet1!B9"... Which means it's not showing the actual formula, but simply showing text...

Any ideas would be great!

Thanks in advance,

pulmonaryKid
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Hi

You are just building a string with the address and that's what excel shows you.

To convert a string to a reference, wrap it in Indirect

=Indirect(your formula)
 
Upvote 0
Thanks for the help... Unfortunately when I include "Indirect" I get a REF error.

The formula ends up looking like this :

=INDIRECT("=PatientInfo!B"&ROUND(TREND({44,64},{24,28},ROW()),0))

and the end result after execution but before error is

=INDIRECT("=PatientInfo!B44")

But then I have a REF error...

Any ideas?

Thanks again...
 
Upvote 0
Hi

The "=" sign should not be in the string.

Try:

=INDIRECT("PatientInfo!B"&ROUND(TREND({44,64},{24,28},ROW()),0))

that will result in

=INDIRECT("PatientInfo!B44")
 
Upvote 0

Forum statistics

Threads
1,224,503
Messages
6,179,136
Members
452,890
Latest member
Nikhil Ramesh

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top