I have been trying to convert a selection of string cells to integer by using CInt but a compile error appeared. (Compile error: Identifier expected)
My code is as follows:
Please help.
My code is as follows:
VBA Code:
'convert new quarter data from string to numeric
Range("c3:f3").Select
Range(Selection, Selection.End(xlDown)).Select
CInt(Selection.Value)