Hi,
To create a Named definition
Do the following:
1. Enter different names of persons in cell G2:G6.
2. Select the range G2:G6
3. On the Insert menu, point to Name and then click Define. The Define Name
dialog box is displayed. The Refer To text box displays the selected range.
4. Enter a name in the Names in Workbook text box. This name is like a
variable, which stores all the cell values of the cell range
5. click the Add button to add the defined name in the Names in Workbook list.
6. Click OK. to save the setting and return the Worksheet.
To apply the named definition to cell or a range of cell.
Do the following:
1. On the Data menu, click Validation. The Validation dialog box is displayed.
2. Click the Setting Tab.
3. Under the Validation Criteria, clickthe Allow list and then select List.
4. In the Source text box enter the name you have defined by prefixing with
"="
5. Click and select the "The Ignore blank" and "In-cell drop down" check
boxes.
6. Click OK.
Note: You can modify the named range by either modifying directly in the
"Refer To" text box or Deleting the old named definition and add a same
definition name. You cannot directly over the name definition because the
Range definition in the Refer To text would still retain the same definition.
Challa Prabhu
Alun Jones said:
In VBScript or C#, I can rename an excel ListObject by simply writing a line
such as:
ListObject lo = (ListObject)ws.ListObjects["List1"];
lo.Name = "Certificate List";
Now, how do I rename a list using the interactive interface, without code?
Thanks,
Alun.
~~~~