I am using a code I found in another thread to convert a column from text to number:
[E:E].Select
With Selection
.NumberFormat = "General"
.Value = .Value
End With
This runs in the current tab/sheet I am currently in but my workbook has several tabs and I only want it to run in one sheet. What would I need to add to the code to only run in one specified sheet?