If ISNUMERIC then
I need to automate by code a manual work in excel.
I need a code that would give me the following result
If the value in Column C is Numeric then for each value add "000000000000" at the begining.
If the value in Column C is not Numeric then nothing
I started the following code by I am not sure how to complete it
I need to automate by code a manual work in excel.
I need a code that would give me the following result
If the value in Column C is Numeric then for each value add "000000000000" at the begining.
If the value in Column C is not Numeric then nothing
I started the following code by I am not sure how to complete it
Code:
Dim R As Range
Set R = Intersect(Range("C1").EntireColumn, ActiveSheet.UsedRange)
R.Value =
[\Code]
Can you help please?