http://imgur.com/ekrjv0D
Hi please check above image. Is there any way to insert number before each word in worksheet. I have a table like this:
Try this short macro:
Sub marine() Dim n As Long Dim r As Range n = 1 For Each r In ActiveSheet.UsedRange If r.Value <> "" Then r.Value = n & "/" & r.Value n = n + 1 End If Next r End Sub