jfeldman1994
New Member
- Joined
- Jun 18, 2013
- Messages
- 5
Hi all,
I have tried numerous ways to approach this problem to no avail but maybe someone can finally help me solve it. I have to pull dates from excel spreadsheets that are stored online. There are around 50 different spreadsheets that I need to get the same data from. Each spreadsheet has the nearly same title, "P401_9600021345.xlsm" and the exact same format in excel. I already have a VLookup and an index match formula that go to that specific document and get the data. i.e.
"=VLOOKUP(D1, 'http://google.com/org/osmp/metrics/Shared Documents/Supply_Chain/Excel Systems P401 Data/401/[P401_9600021345.xlsm]Template!$A$4:$E$37,2, FALSE)"
"=INDEX('http://google.com/org/osmp/metrics/Shared Documents/Supply_Chain/Excel Systems F401 Data/401/[P401_9600021345.xlsm]Template'!$A:$K,(MATCH(D$1,'http://google.com/org/osmp/metrics/Shared Documents/Supply_Chain/Excel Systems F401 Data/401/[P401_9600021345.xlsm]Template'!$A:$A,0)),2)"
Both of these work fine. However I need the links to be dynamic. I have a column with all of the different P401 Numbers. I wanted to have the URL build depending on what value is in the column.
i.e.
A1: 9600021345
A2: 9600025648
A3: 9600045679
so on...
"=VLookup(D1," ' "&"http://google.com/org/osmp/metrics/Shared Documents/Supply_Chain/Excel Systems P401 Data/401/[P401_"&$A1&".xlsm]Template!$A$4:$E$37",2, FALSE)
Any thoughts would be greatly appreciated. Note: All of this information is not the real data due to proprietary complications so these are just made up examples of what I am trying to accomplish. They are based on the real format though.
I have tried numerous ways to approach this problem to no avail but maybe someone can finally help me solve it. I have to pull dates from excel spreadsheets that are stored online. There are around 50 different spreadsheets that I need to get the same data from. Each spreadsheet has the nearly same title, "P401_9600021345.xlsm" and the exact same format in excel. I already have a VLookup and an index match formula that go to that specific document and get the data. i.e.
"=VLOOKUP(D1, 'http://google.com/org/osmp/metrics/Shared Documents/Supply_Chain/Excel Systems P401 Data/401/[P401_9600021345.xlsm]Template!$A$4:$E$37,2, FALSE)"
"=INDEX('http://google.com/org/osmp/metrics/Shared Documents/Supply_Chain/Excel Systems F401 Data/401/[P401_9600021345.xlsm]Template'!$A:$K,(MATCH(D$1,'http://google.com/org/osmp/metrics/Shared Documents/Supply_Chain/Excel Systems F401 Data/401/[P401_9600021345.xlsm]Template'!$A:$A,0)),2)"
Both of these work fine. However I need the links to be dynamic. I have a column with all of the different P401 Numbers. I wanted to have the URL build depending on what value is in the column.
i.e.
A1: 9600021345
A2: 9600025648
A3: 9600045679
so on...
"=VLookup(D1," ' "&"http://google.com/org/osmp/metrics/Shared Documents/Supply_Chain/Excel Systems P401 Data/401/[P401_"&$A1&".xlsm]Template!$A$4:$E$37",2, FALSE)
Any thoughts would be greatly appreciated. Note: All of this information is not the real data due to proprietary complications so these are just made up examples of what I am trying to accomplish. They are based on the real format though.