What is the proper syntax to convert a cell in which a number is stored as text and a negative number is displayed in parenthesis e.g. "(145.50)" to a format in which a negative number is displayed with a negative sign prefix e.g. "-145.50"?
The code below gives me this Run-time error: Method 'Range' of object '_Global' failed.
Code:
With sht
.Range("K2:N" & lastrow).NumberFormat = "General"
End With
Thank you.