I am having issues with this string of code:
Sub Format_Workbook_Pt2()
Sub ConvertTextToNumber()
Sheets("All_Data").Select
Range("C:C").Select
Selection.TextToColumns _
Destination:=Range("A:A"), _
DataType:=xlDelimited
End Sub
End Sub
I wanted to keep Sub Frmat_Worbook_Pt2() as the main macro as I build more code into the main macro.
Thanks!
Sub Format_Workbook_Pt2()
Sub ConvertTextToNumber()
Sheets("All_Data").Select
Range("C:C").Select
Selection.TextToColumns _
Destination:=Range("A:A"), _
DataType:=xlDelimited
End Sub
End Sub
I wanted to keep Sub Frmat_Worbook_Pt2() as the main macro as I build more code into the main macro.
Thanks!