Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a spread sheet of entire year schedule. The format as following:
1 2 3 .... 31 row 1 row 2 row 3 Jan row 4 row 5 Feb row x Dec I would like to replace column 1 up to Jan to 1. Replace the cell below Jan to Feb to 2. etc. Would anyone help. Thanks in advance. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
set rng = columns(1).SpecialCells(xlBlanks)
i = 1 for each ar in rng.areas ar.Value = i i = i + 1 Next -- Regards, Tom Ogilvy "james" wrote in message ... I have a spread sheet of entire year schedule. The format as following: 1 2 3 .... 31 row 1 row 2 row 3 Jan row 4 row 5 Feb row x Dec I would like to replace column 1 up to Jan to 1. Replace the cell below Jan to Feb to 2. etc. Would anyone help. Thanks in advance. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Converting a text word or text string to a number | Excel Discussion (Misc queries) | |||
Converting number to text | Excel Discussion (Misc queries) | |||
Converting number to text | Excel Discussion (Misc queries) | |||
Converting Text to Number | Excel Discussion (Misc queries) | |||
Converting text to a number | Excel Worksheet Functions |