Hello all, im new to posting but certainly not to the forums!
IN any case , i have a quite a pickle - so a run retail stores with a lot of raw data , i have created a sheet to track that data on a daily basis - and i've created "Monthly Workbooks"
In each workbook i have sheets from 1-30 or 31 to represent the day of the month ! - as to happens to all - this sheet grew and now its practically running all raw data ;
so i have a different sheet where i keep track of SPECIFIC targeted data , this data is presented and stored as shown the picture
each cell you see here References the Sheetnumber Say 1,2,3,4 etc , and this is used throughout other sheets, the formula IN C5 is:
IN D5 is:
and so on going left and right - the references are DYNAMIC - it is like that throughout the entire workbook - how can i use VBA to replace such monstrosity for i have thousands of these formals and my workbook is now a slowpoke.
Thank you all!!
I also Posted this on EXCELFORUMS ; but no help yet: hopefully i can get direction.
IN any case , i have a quite a pickle - so a run retail stores with a lot of raw data , i have created a sheet to track that data on a daily basis - and i've created "Monthly Workbooks"
In each workbook i have sheets from 1-30 or 31 to represent the day of the month ! - as to happens to all - this sheet grew and now its practically running all raw data ;
so i have a different sheet where i keep track of SPECIFIC targeted data , this data is presented and stored as shown the picture
each cell you see here References the Sheetnumber Say 1,2,3,4 etc , and this is used throughout other sheets, the formula IN C5 is:
Code:
=IFERROR(INDEX(INDIRECT("'"&C$3&"'!NX1:QD300"),XMATCH($B5,INDIRECT("'"&C$3&"'!NY1:NY300")),XMATCH($B$2,INDIRECT("'"&C$3&"'!NX1:QD1"))),0)
IN D5 is:
Code:
=IFERROR(INDEX(INDIRECT("'"&D$3&"'!NX1:QD300"),XMATCH($B5,INDIRECT("'"&D$3&"'!NY1:NY300")),XMATCH($B$2,INDIRECT("'"&D$3&"'!NX1:QD1"))),0)
and so on going left and right - the references are DYNAMIC - it is like that throughout the entire workbook - how can i use VBA to replace such monstrosity for i have thousands of these formals and my workbook is now a slowpoke.
Thank you all!!
I also Posted this on EXCELFORUMS ; but no help yet: hopefully i can get direction.
Last edited by a moderator: