> Hello. I'm having a little trouble making a custom function that will show
> the value of another cell. Basically what I want is a Function that will get
[quoted text clipped - 16 lines]
> I'm not sure if any of that helps afterall. But is there a way to do this.
> When I've tried I get either #NAME or #VALUE errors.
Thanks, That helps a lot. I kind of want to expand on it and Make it so I
dont have to type the H everytime. Is there a way that I can somehow add a H
on there and have Indirect read it.. I tried with the Numbers Tab in "Format
Cells". It always returns a #REF error and I thikn I found that even though
it reads a Cell that says H1 on there it only reads the 1.
> In G1 enter =IF(H1="","",INDIRECT(H1))
>
[quoted text clipped - 18 lines]
> > I'm not sure if any of that helps afterall. But is there a way to do this.
> > When I've tried I get either #NAME or #VALUE errors.
kassie - 21 Mar 2006 20:31 GMT
Hi
You cannot use a number format, as a cell reference is in fact text. A
workaround would be to put the H in a seperate column, say Col I, and using
the following formula instead:
=IF(H1="","",INDIRECT(CONCATENATE(I1,H1)))
You can hide this column, or simply paint the font white to hide it, if that
is needed.
> Thanks, That helps a lot. I kind of want to expand on it and Make it so I
> dont have to type the H everytime. Is there a way that I can somehow add a H
[quoted text clipped - 24 lines]
> > > I'm not sure if any of that helps afterall. But is there a way to do this.
> > > When I've tried I get either #NAME or #VALUE errors.