Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
For Each cell In Selection
ActiveWorkbook.Names.Add cell.Offset(, -2).Value & _
cell.Offset(, -1).Value, cell
Next cell
myRowCount = Application.WorksheetFunction.CountA(Range("C:C"))
For Each cell In Range("C2:C" & myRowCount)
ActiveWorkbook.Names.Add "Seed" & cell.Offset(, -2).Value & _
cell.Offset(, -1).Value, cell
Next cell
with application
.displayalerts=false
objSheet.[A1].CurrentRegion.CreateNames Top:=True, Left:=False
.displayalerts=true
end with