Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default how do i get automatically number columns within quotes

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"


  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,124
Default 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"



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 52
Default how do i get automatically number columns within quotes

If you don't want to use VBA, simply use this formula in the Excel cells:

=CHAR(34) & "load" & ROW() & CHAR(34)

Assuming that you want the list to start at row 1 that will work. If you
want it to start at row 5 for example, you'll need to change it to read:

=CHAR(34) & "load" & ROW()-4 & CHAR(34)

Drag fill this formula to complete your set and then copy and paste values
if you wish to remove the formulas.

"RevSri" wrote:

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"


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,886
Default how do i get automatically number columns within quotes

Hi
Highlight the three cells, with load1, load2 and load3 in them, and
click on the fill handle (small black cross as you hover over bottom
right of selected range). Hold your left mouse button down as you drag
the mouse down the column as far as required.
The ending number will increment automatically.

--
Regards

Roger Govier


"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
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
"formula is too long" AND test for whether double-quotes are next-to text or number?? The Moose Excel Discussion (Misc queries) 2 September 14th 06 05:29 AM
Automatically changing stock tick quotes to decimal-price format. Kaci Excel Worksheet Functions 1 June 15th 05 04:53 PM
Automatically creating the correct number of dated columns Struggling of Essex Excel Discussion (Misc queries) 3 April 25th 05 05:56 PM
Concatenate columns, separated by double quotes Felicia Excel Worksheet Functions 2 April 20th 05 07:48 PM
Adding quotes to columns Mj Excel Discussion (Misc queries) 3 December 9th 04 03:49 PM


All times are GMT +1. The time now is 07:28 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"