I think you missed some .'s:
You could also use Find/Replace instead of the Substitute function.![]()
With Sheets("Class Roster Template") For Each rng In .UsedRange rng = WorksheetFunction.Substitute(rng, "/", "") Next rng End With With Sheets("Class Roster Template") For Each rng1 In .Range("J2", .Range("J2").End(xlDown)) rng1 = WorksheetFunction.Substitute(rng1, "M", "L") Next rng1 End With
Dom
Bookmarks