title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
Range.ID property (Excel) |
vbaxl10.chm144231 |
|
|
0ff7f261-8829-2858-5097-a638c01e5f3c |
05/11/2019 |
medium |
Returns or sets a String value that represents the identifying label for the specified cell when the page is saved as a webpage.
expression.ID
expression A variable that represents a Range object.
Use an ID label as a hyperlink reference in other HTML documents or on the same webpage.
This example sets the ID of cell A1 on the active worksheet to Target.
ActiveSheet.Range("A1").ID = "target"
Later, the document is saved as a webpage, and the following line of HTML is added to the webpage. When the user then views the page in a web browser and chooses the hyperlink, the browser displays the cell.
<A HREF="#target">Quarterly earnings</A>
[!includeSupport and feedback]