To specify more what I am trying to accomplish, what I am doing is taking setup information on a race car in which I have several years worth of data on a master sheet and trying to pick only a few setups and make a chart off of the information. In order to simplify the chart process I wanted to make a seperate data sheet to only accomodate the certain setups and data associated with them for analysis. The copy and pasting is a pain because you have to go through the large master sheet file and find and pick the setups I need for analysis and then paste on the seperate sheet. So the drop down menu on the data sheet is based off of the setup names (usually named after the track the car has ran on example: Chicago, Kansas, New_Hampshire). So through data validation I made a list based off of those setup names so that I can pick the setup I need. Now with each setup, the data I'm analyzing is found on the same row just the next columns over for each setup. So in order for the data to show up on the data sheet when I choose a setup from the drop down list I had to create the formula =IFERROR(IF(C2="","",INDIRECT(C2)),"") in the cells that are on the same row as the cell with the drop down list so that the data numbers will appear when something is chosen. However, in order to get the whole row of data to show up I had to associate the data values in name manager with the name of the setup. So let's say I pic a row of data for the setup New_Hampshire, I would name the string of values New_Hampshire in name manager and then pic New_Hampshire in the drop down list and all the data numbers will show up. Where the problem comes in is lets say there's a problem and I need to add a specific date to the name of the setup because there are several New_Hampshire setups and have to make it New_Hampshire_9_28_2011, the drop down list will account for the change and show up when looking through the list. However, the name manager still has the data I want labeled as New_Hampshire so the data will not show up when choosing New_Hampshire_9_28_2011. I was hoping there was a way that name manager can recognize the naming change so that I don't have to go back in and edit it myself.