Do you want the labels to be just the numbers? If so, follow these steps:
1) In the Excel ribbon, go to NodeXL, Visual Properties, Autofill Columns.
2) In the Autofill Columns dialog box, select the Vertices tab.
3) On the Vertices tab, select the name of your numerical column in the drop-down list to the right of "Vertex Label".
4) Click the Autofill button. That will set the vertex labels to the values in your numerical column.
Or do you want the labels to consist of the vertex names and the numerical values? If so, you can use an Excel formula in the Label column on the Vertices worksheet that strings them together. Follow these steps:
1) Select the entire Label column on the Vertices worksheet and format the column as "General". This is important. (The column is formatted as Text by default.)
2) Copy the following formula into every cell in the Label column:
=[@Vertex] & " " & [@MyNumbers]
This formula says "set the label in this cell to the name of this vertex followed by a space followed by the value in the MyNumbers column." You should change "MyNumbers" to the name of your numerical column.
-- Tony
1) In the Excel ribbon, go to NodeXL, Visual Properties, Autofill Columns.
2) In the Autofill Columns dialog box, select the Vertices tab.
3) On the Vertices tab, select the name of your numerical column in the drop-down list to the right of "Vertex Label".
4) Click the Autofill button. That will set the vertex labels to the values in your numerical column.
Or do you want the labels to consist of the vertex names and the numerical values? If so, you can use an Excel formula in the Label column on the Vertices worksheet that strings them together. Follow these steps:
1) Select the entire Label column on the Vertices worksheet and format the column as "General". This is important. (The column is formatted as Text by default.)
2) Copy the following formula into every cell in the Label column:
=[@Vertex] & " " & [@MyNumbers]
This formula says "set the label in this cell to the name of this vertex followed by a space followed by the value in the MyNumbers column." You should change "MyNumbers" to the name of your numerical column.
-- Tony