Thread
:
how do i get automatically number columns within quotes
View Single Post
#
2
Posted to microsoft.public.excel.misc
Don Guillett
external usenet poster
Posts: 10,124
how do i get automatically number columns within quotes
try this idea
Sub incrementnuminquotes()
For i = 1 To 3
x = """load" & i & """"
MsgBox x
Next i
End Sub
--
Don Guillett
SalesAid Software
"RevSri" wrote in message
...
my querry is that i want to gerenate the numbers automatically within the
quotes.(in excel)
For Example:
"load1"
"load2"
"load3"
like this i want to generate it upto "load1000"
Reply With Quote
Don Guillett
View Public Profile
Find all posts by Don Guillett