mp3architect
New Member
- Joined
- Sep 8, 2014
- Messages
- 2
I have been trying to figure this out for the past few hours with little luck. I have searched through this forum but everything I have tried thus far is just shy of hitting the nail on the head. I am hoping someone can help me out.
I have a large table of many rooms:
[TABLE="width: 500"]
<tbody>[TR]
[TD]ID[/TD]
[TD]Room Name[/TD]
[TD]Area[/TD]
[TD]Location[/TD]
[/TR]
[TR]
[TD]RM01
[/TD]
[TD]Office 1[/TD]
[TD]300[/TD]
[TD]Zone 1[/TD]
[/TR]
[TR]
[TD]RM02[/TD]
[TD]Office 2[/TD]
[TD]300[/TD]
[TD]Zone 1[/TD]
[/TR]
[TR]
[TD]RM03[/TD]
[TD]Office 3[/TD]
[TD]450[/TD]
[TD]Zone 3[/TD]
[/TR]
[TR]
[TD]RM04[/TD]
[TD]Administration[/TD]
[TD]600[/TD]
[TD]Zone 2[/TD]
[/TR]
[TR]
[TD]RM05[/TD]
[TD]*******[/TD]
[TD]200[/TD]
[TD]Zone 1[/TD]
[/TR]
[TR]
[TD]RM06[/TD]
[TD]Conference Room[/TD]
[TD]250[/TD]
[TD]Zone 2[/TD]
[/TR]
</tbody>[/TABLE]
imagine this list goes on for over 200 rooms...
I want to create a table on a separate sheet that will search this information based off which zone it is in and list the rooms by zone:
ZONE 1
[TABLE="width: 500"]
<tbody>[TR]
[TD]ID[/TD]
[TD]Room Name[/TD]
[TD]Area[/TD]
[/TR]
[TR]
[TD]RM01
[/TD]
[TD]Office 1[/TD]
[TD]300[/TD]
[/TR]
[TR]
[TD]RM02[/TD]
[TD]Office 2[/TD]
[TD]300[/TD]
[/TR]
[TR]
[TD]RM05[/TD]
[TD]*******[/TD]
[TD]200[/TD]
[/TR]
</tbody>[/TABLE]
Zone2
[TABLE="width: 500"]
<tbody>[TR]
[TD]ID[/TD]
[TD]Room Name[/TD]
[TD]Area[/TD]
[TD]Location[/TD]
[/TR]
[TR]
[TD]RM04[/TD]
[TD]Administration[/TD]
[TD]600[/TD]
[TD]Zone 2[/TD]
[/TR]
[TR]
[TD]RM06[/TD]
[TD]Conference Room[/TD]
[TD]250[/TD]
[TD]Zone 2
[/TD]
[/TR]
</tbody>[/TABLE]
Zone 3
[TABLE="width: 500"]
<tbody>[TR]
[TD]ID[/TD]
[TD]Room Name[/TD]
[TD]Area[/TD]
[TD]Location[/TD]
[/TR]
[TR]
[TD]RM03[/TD]
[TD]Office 3[/TD]
[TD]450[/TD]
[TD]Zone 3[/TD]
[/TR]
</tbody>[/TABLE]
The closest answer I have been able to find is replicating an index problem here: http://www.mrexcel.com/forum/excel-questions/546177-vlookup-find-next.html#post2696961.
I have essentially the same issue, where VLookup is perfect, and I am tryign to go to the next line in my original table to generate the new one. However, as I modify the formulas, everything goes to hell.
I am pretty good at basic excel, but very new to index functions. Any help or better direction would be greatly appreciated.
I have a large table of many rooms:
[TABLE="width: 500"]
<tbody>[TR]
[TD]ID[/TD]
[TD]Room Name[/TD]
[TD]Area[/TD]
[TD]Location[/TD]
[/TR]
[TR]
[TD]RM01
[/TD]
[TD]Office 1[/TD]
[TD]300[/TD]
[TD]Zone 1[/TD]
[/TR]
[TR]
[TD]RM02[/TD]
[TD]Office 2[/TD]
[TD]300[/TD]
[TD]Zone 1[/TD]
[/TR]
[TR]
[TD]RM03[/TD]
[TD]Office 3[/TD]
[TD]450[/TD]
[TD]Zone 3[/TD]
[/TR]
[TR]
[TD]RM04[/TD]
[TD]Administration[/TD]
[TD]600[/TD]
[TD]Zone 2[/TD]
[/TR]
[TR]
[TD]RM05[/TD]
[TD]*******[/TD]
[TD]200[/TD]
[TD]Zone 1[/TD]
[/TR]
[TR]
[TD]RM06[/TD]
[TD]Conference Room[/TD]
[TD]250[/TD]
[TD]Zone 2[/TD]
[/TR]
</tbody>[/TABLE]
imagine this list goes on for over 200 rooms...
I want to create a table on a separate sheet that will search this information based off which zone it is in and list the rooms by zone:
ZONE 1
[TABLE="width: 500"]
<tbody>[TR]
[TD]ID[/TD]
[TD]Room Name[/TD]
[TD]Area[/TD]
[/TR]
[TR]
[TD]RM01
[/TD]
[TD]Office 1[/TD]
[TD]300[/TD]
[/TR]
[TR]
[TD]RM02[/TD]
[TD]Office 2[/TD]
[TD]300[/TD]
[/TR]
[TR]
[TD]RM05[/TD]
[TD]*******[/TD]
[TD]200[/TD]
[/TR]
</tbody>[/TABLE]
Zone2
[TABLE="width: 500"]
<tbody>[TR]
[TD]ID[/TD]
[TD]Room Name[/TD]
[TD]Area[/TD]
[TD]Location[/TD]
[/TR]
[TR]
[TD]RM04[/TD]
[TD]Administration[/TD]
[TD]600[/TD]
[TD]Zone 2[/TD]
[/TR]
[TR]
[TD]RM06[/TD]
[TD]Conference Room[/TD]
[TD]250[/TD]
[TD]Zone 2
[/TD]
[/TR]
</tbody>[/TABLE]
Zone 3
[TABLE="width: 500"]
<tbody>[TR]
[TD]ID[/TD]
[TD]Room Name[/TD]
[TD]Area[/TD]
[TD]Location[/TD]
[/TR]
[TR]
[TD]RM03[/TD]
[TD]Office 3[/TD]
[TD]450[/TD]
[TD]Zone 3[/TD]
[/TR]
</tbody>[/TABLE]
The closest answer I have been able to find is replicating an index problem here: http://www.mrexcel.com/forum/excel-questions/546177-vlookup-find-next.html#post2696961.
I have essentially the same issue, where VLookup is perfect, and I am tryign to go to the next line in my original table to generate the new one. However, as I modify the formulas, everything goes to hell.
I am pretty good at basic excel, but very new to index functions. Any help or better direction would be greatly appreciated.