True - but are there not issues embedding some of the morefunc functions into Excel 2007?
True - but are there not issues embedding some of the morefunc functions into Excel 2007?
Dunno, sorry, I don't use it.
Entia non sunt multiplicanda sine necessitate
There is an option argument in INDIRECT.EXT to choose volatility:
=INDIRECT.EXT(Reference,Volatile,A1-Style,Mode)
http://xcell05.free.fr/morefunc/engl...direct.ext.htm
I think the the embedding of the addin does not work in 2007... so you can't share the workbook without having user install Morefunc too.
Where there is a will there are many ways.
If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner
Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.
You could use VBA to rebuild the formulae as and when the sheet name is altered in Column A.
IMO you either need "hardwired" links or else you need Volatility given the otherwise implicit references.
My Recommended Reading:
Volatility
Sumproduct & Arrays
Pivot Intro
Email from XL - VBA & Outlook VBA
Function Dictionary & Function Translations
Dynamic Named Ranges
As a final (possible) pointer...
Pending layout... if we assumed that on your summary sheet the formulae are listed adjacent to the sheet names and that presumably the formulae are identical per column then in theory...
Use row 3 to store each formula as a string with a "place holder" (ie some denotation) for sheet name ... this string could be applied to whichever row has had a sheet name change with the place holder substituted for the appropriate sheet name.
Such an approach would remove the volatility but would adapt as sheet names were altered ... (you've not as yet specified how A4:A150 is generated - manual or other means)
Embedding aside, if you used INDIRECT.EXT in non-volatile fashion, you could force a full recalc wihen the master sheet was selected, if the linked sheets don't change while you're not looking.
What I mean is say B4:B150 all presently use:
then in theory you could store the "master formula" in B3 which is in effect:![]()
=INDIRECT("'"&$A4&"'!C12")
where PLACEHOLDER represents the sheet variable (to be determined)![]()
"='PLACEHOLDER'!C12"
Then when the sheet names are altered you revise the formula accordingly, ie:
does that make sense ? very basic example of course.![]()
For Each rngCell in Range("B4:B150").Cells With rngCell .Formula = Split(Replace(Range("B3").Text, "PLACEHOLDER", Cells(.Row, "A").Value), """")(1) End With Next rngCell
(edit on an aside the use of quotations to encase the formula is not really advisable ... better perhaps to encase the master within an unusual char (ie something not used in your formulae) - eg: #='PLACEHOLDER'!C12# and amend VBA accordingly to split based on "#")
Last edited by DonkeyOte; 04-22-2010 at 12:32 PM.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks