How to use the name of an Excel spreadsheet cell in VBA, not to indicate row and column?
For example, I gave the name "CustomerName" to cell B20, when I use this name in VBA to put in the label (label1.caption = CustomerName), it accepts and does not give error. However, it does not take the value of the cell.
As I'm inserting columns and rows, the cell changes, but VBA obviously does not hit the rows and columns of the range command.
How do I use the cell name directly?