Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 43
Default "indirect" formula reference

Hi,

How can I re-write this formula so that when I copy it down 1 row the
ref_text portion !d483 changes to !d484 ?

=+INDIRECT("'"&'ACCOUNT MASTER'!$AH$6&"'!d483")

Please help.

Thanks,
Orlando
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5,441
Default "indirect" formula reference

There are quite a few ways. Here's one:

=INDIRECT("'"&'ACCOUNT MASTER'!$AH$6&"'!D" & Row(A483))

HTH,
Bernie
MS Excel MVP


"ORLANDO VAZQUEZ" wrote in message
...
Hi,

How can I re-write this formula so that when I copy it down 1 row the
ref_text portion !d483 changes to !d484 ?

=+INDIRECT("'"&'ACCOUNT MASTER'!$AH$6&"'!d483")

Please help.

Thanks,
Orlando



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default "indirect" formula reference

Try the below

=+INDIRECT("'"&'ACCOUNT MASTER'!$AH$6&"'!d" & ROW(A483))

If this post helps click Yes
---------------
Jacob Skaria


"ORLANDO VAZQUEZ" wrote:

Hi,

How can I re-write this formula so that when I copy it down 1 row the
ref_text portion !d483 changes to !d484 ?

=+INDIRECT("'"&'ACCOUNT MASTER'!$AH$6&"'!d483")

Please help.

Thanks,
Orlando

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 43
Default "indirect" formula reference

That works fantastically. Can we also make the column changeable too ?

"ORLANDO VAZQUEZ" wrote:

Hi,

How can I re-write this formula so that when I copy it down 1 row the
ref_text portion !d483 changes to !d484 ?

=+INDIRECT("'"&'ACCOUNT MASTER'!$AH$6&"'!d483")

Please help.

Thanks,
Orlando

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 43
Default "indirect" formula reference

Can we make the column changeable too ?


"Bernie Deitrick" wrote:

There are quite a few ways. Here's one:

=INDIRECT("'"&'ACCOUNT MASTER'!$AH$6&"'!D" & Row(A483))

HTH,
Bernie
MS Excel MVP


"ORLANDO VAZQUEZ" wrote in message
...
Hi,

How can I re-write this formula so that when I copy it down 1 row the
ref_text portion !d483 changes to !d484 ?

=+INDIRECT("'"&'ACCOUNT MASTER'!$AH$6&"'!d483")

Please help.

Thanks,
Orlando






  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 43
Default "indirect" formula reference

Can we make the column changeable too ?


"Jacob Skaria" wrote:

Try the below

=+INDIRECT("'"&'ACCOUNT MASTER'!$AH$6&"'!d" & ROW(A483))

If this post helps click Yes
---------------
Jacob Skaria


"ORLANDO VAZQUEZ" wrote:

Hi,

How can I re-write this formula so that when I copy it down 1 row the
ref_text portion !d483 changes to !d484 ?

=+INDIRECT("'"&'ACCOUNT MASTER'!$AH$6&"'!d483")

Please help.

Thanks,
Orlando

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5,441
Default "indirect" formula reference

=INDIRECT("'"&'ACCOUNT MASTER'!$AH$6&"'!" & ADDRESS(Row(A483),COLUMN(D1)))


HTH,
Bernie
MS Excel MVP


"ORLANDO VAZQUEZ" wrote in message
...
Can we make the column changeable too ?


"Bernie Deitrick" wrote:

There are quite a few ways. Here's one:

=INDIRECT("'"&'ACCOUNT MASTER'!$AH$6&"'!D" & Row(A483))

HTH,
Bernie
MS Excel MVP


"ORLANDO VAZQUEZ" wrote in message
...
Hi,

How can I re-write this formula so that when I copy it down 1 row the
ref_text portion !d483 changes to !d484 ?

=+INDIRECT("'"&'ACCOUNT MASTER'!$AH$6&"'!d483")

Please help.

Thanks,
Orlando






  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 43
Default "indirect" formula reference

Hi Bernie,

How can I make this formula adjust for column movement too ?
I tried to do the same as you did with Row by using COL but it doesn't work
that way.

Thanks for your help.

Orlando


"Bernie Deitrick" wrote:

There are quite a few ways. Here's one:

=INDIRECT("'"&'ACCOUNT MASTER'!$AH$6&"'!D" & Row(A483))

HTH,
Bernie
MS Excel MVP


"ORLANDO VAZQUEZ" wrote in message
...
Hi,

How can I re-write this formula so that when I copy it down 1 row the
ref_text portion !d483 changes to !d484 ?

=+INDIRECT("'"&'ACCOUNT MASTER'!$AH$6&"'!d483")

Please help.

Thanks,
Orlando




  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 43
Default "indirect" formula reference

Jacob,

That worked great. Can I make the column likewise changeable so that if I
move it down one and right one it also changes column ref ?


"Jacob Skaria" wrote:

Try the below

=+INDIRECT("'"&'ACCOUNT MASTER'!$AH$6&"'!d" & ROW(A483))

If this post helps click Yes
---------------
Jacob Skaria


"ORLANDO VAZQUEZ" wrote:

Hi,

How can I re-write this formula so that when I copy it down 1 row the
ref_text portion !d483 changes to !d484 ?

=+INDIRECT("'"&'ACCOUNT MASTER'!$AH$6&"'!d483")

Please help.

Thanks,
Orlando

  #10   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 43
Default "indirect" formula reference

Worked great! Thank you.

"Bernie Deitrick" wrote:

=INDIRECT("'"&'ACCOUNT MASTER'!$AH$6&"'!" & ADDRESS(Row(A483),COLUMN(D1)))


HTH,
Bernie
MS Excel MVP


"ORLANDO VAZQUEZ" wrote in message
...
Can we make the column changeable too ?


"Bernie Deitrick" wrote:

There are quite a few ways. Here's one:

=INDIRECT("'"&'ACCOUNT MASTER'!$AH$6&"'!D" & Row(A483))

HTH,
Bernie
MS Excel MVP


"ORLANDO VAZQUEZ" wrote in message
...
Hi,

How can I re-write this formula so that when I copy it down 1 row the
ref_text portion !d483 changes to !d484 ?

=+INDIRECT("'"&'ACCOUNT MASTER'!$AH$6&"'!d483")

Please help.

Thanks,
Orlando








  #11   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 43
Default "indirect" formula reference

Bernie,

Is there a way to shorten the formula below. All that is changing one digit
in the indirect ref text. i.e., AH6 becomes AH7 .....AH7 becomes AH8...and
so on.

Orlando


=INDIRECT("'"&'ACCOUNT MASTER'!$AH$6&"'!" & ADDRESS(ROW(D483),COLUMN(D483)))
+INDIRECT("'"&'ACCOUNT MASTER'!$AH$7&"'!" & ADDRESS(ROW(D483),COLUMN(D483)))
+INDIRECT("'"&'ACCOUNT MASTER'!$AH$8&"'!" & ADDRESS(ROW(D483),COLUMN(D483)))
+INDIRECT("'"&'ACCOUNT MASTER'!$AH$9&"'!" & ADDRESS(ROW(D483),COLUMN(D483)))
+INDIRECT("'"&'ACCOUNT MASTER'!$AH$10&"'!" & ADDRESS(ROW(D483),COLUMN(D483)))
+INDIRECT("'"&'ACCOUNT MASTER'!$AH$11&"'!" & ADDRESS(ROW(D483),COLUMN(D483)))

"Bernie Deitrick" wrote:

=INDIRECT("'"&'ACCOUNT MASTER'!$AH$6&"'!" & ADDRESS(Row(A483),COLUMN(D1)))


HTH,
Bernie
MS Excel MVP


"ORLANDO VAZQUEZ" wrote in message
...
Can we make the column changeable too ?


"Bernie Deitrick" wrote:

There are quite a few ways. Here's one:

=INDIRECT("'"&'ACCOUNT MASTER'!$AH$6&"'!D" & Row(A483))

HTH,
Bernie
MS Excel MVP


"ORLANDO VAZQUEZ" wrote in message
...
Hi,

How can I re-write this formula so that when I copy it down 1 row the
ref_text portion !d483 changes to !d484 ?

=+INDIRECT("'"&'ACCOUNT MASTER'!$AH$6&"'!d483")

Please help.

Thanks,
Orlando






  #12   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5,441
Default "indirect" formula reference

Orlando,

AFAIK, you cannot use INDIRECT with 3 D ranges, so there is no way to shorten this.

HTH,
Bernie
MS Excel MVP


"ORLANDO VAZQUEZ" wrote in message
...
Bernie,

Is there a way to shorten the formula below. All that is changing one digit
in the indirect ref text. i.e., AH6 becomes AH7 .....AH7 becomes AH8...and
so on.

Orlando


=INDIRECT("'"&'ACCOUNT MASTER'!$AH$6&"'!" & ADDRESS(ROW(D483),COLUMN(D483)))
+INDIRECT("'"&'ACCOUNT MASTER'!$AH$7&"'!" & ADDRESS(ROW(D483),COLUMN(D483)))
+INDIRECT("'"&'ACCOUNT MASTER'!$AH$8&"'!" & ADDRESS(ROW(D483),COLUMN(D483)))
+INDIRECT("'"&'ACCOUNT MASTER'!$AH$9&"'!" & ADDRESS(ROW(D483),COLUMN(D483)))
+INDIRECT("'"&'ACCOUNT MASTER'!$AH$10&"'!" & ADDRESS(ROW(D483),COLUMN(D483)))
+INDIRECT("'"&'ACCOUNT MASTER'!$AH$11&"'!" & ADDRESS(ROW(D483),COLUMN(D483)))

"Bernie Deitrick" wrote:

=INDIRECT("'"&'ACCOUNT MASTER'!$AH$6&"'!" & ADDRESS(Row(A483),COLUMN(D1)))


HTH,
Bernie
MS Excel MVP


"ORLANDO VAZQUEZ" wrote in message
...
Can we make the column changeable too ?


"Bernie Deitrick" wrote:

There are quite a few ways. Here's one:

=INDIRECT("'"&'ACCOUNT MASTER'!$AH$6&"'!D" & Row(A483))

HTH,
Bernie
MS Excel MVP


"ORLANDO VAZQUEZ" wrote in message
...
Hi,

How can I re-write this formula so that when I copy it down 1 row the
ref_text portion !d483 changes to !d484 ?

=+INDIRECT("'"&'ACCOUNT MASTER'!$AH$6&"'!d483")

Please help.

Thanks,
Orlando








Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Need formula like "=INDIRECT("X"&$K$(ROW())" chaiyot Excel Worksheet Functions 2 November 4th 08 11:32 PM
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell Steve Kay Excel Discussion (Misc queries) 2 August 8th 08 01:54 AM
Converting a text form of "=Sheet2!A1" into a reference formula Doug Davey Excel Discussion (Misc queries) 11 July 6th 07 03:51 PM
To have this formula work with numbers & Text ='T(INDIRECT("'"& Fin Fang Foom Excel Worksheet Functions 17 February 12th 07 03:04 PM
Formula 'mis' calculate when reference cell contains a "0" Rachel Excel Discussion (Misc queries) 1 December 12th 06 07:43 PM


All times are GMT +1. The time now is 10:30 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"