To format a column of Excel to Text
I am trying to format a column to text and cannot.
The failure this one in (Excel. Range) worksheet. Cells [1, 3]) .EntireColumn. NumberFormat = "*";
I must use another method but not which
Can they help me?
I am trying to format a column to text and cannot.
The failure this one in (Excel. Range) worksheet. Cells [1, 3]) .EntireColumn. NumberFormat = "*";
I must use another method but not which
Can they help me?
Hi,
In VB the following format is valid which I assume also works in C#
Me
.Range("A1").EntireColumn.NumberFormat = "@"