-
Guessing you want to change 1 to 8 to letters
[VBA]
Sub Macro3A()
'Macro converts a number(1) to a letter
Dim cel As Range
Application.ScreenUpdating = False
With Sheets("Breeder")
For Each cel In .Range("I2:O24")
If cel <> "" Then cel = Chr(64 + cel)
Next
End With
End Sub
[/VBA]
MVP (Excel 2008-2010)
Post a workbook with sample data and layout if you want a quicker solution.
To help indent your macros try Smart Indent
Please remember to mark threads 'Solved'
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules