need help in simple program, very simple 
Author Message
 need help in simple program, very simple

I need to write simple macro in excel, it would take range of cells, and
fill them with next days of week/month, begining from actual date. Help i
dont know how to fill next cells with that type of data.... I am just
begining to program so please write as easiest as you can. thnx


Fri, 04 Mar 2005 02:38:39 GMT  
 need help in simple program, very simple



Quote:
> I need to write simple macro in excel, it would take range of cells, and
> fill them with next days of week/month, begining from actual date. Help i
> dont know how to fill next cells with that type of data.... I am just
> begining to program so please write as easiest as you can. thnx

Try this macro:
Range("F4:F18").Select                                    ' F4:F18    -
range of cells to fill
    Selection.NumberFormat = "m/d/yyyy"        ' format of date
    Range("F4").Select                                        ' first cell
    ActiveCell.FormulaR1C1 = "=NOW()"        ' get now() function (actual
date)
    Range("F4:F18").Select                                ' repeat selection
    Selection.DataSeries Rowcol:=xlColumns, Type:=xlChronological, Date:= _
        xlDay, Step:=1, Trend:=False                     ' fill with days

PawelT



Fri, 04 Mar 2005 19:00:30 GMT  
 need help in simple program, very simple

Quote:

> I need to write simple macro in excel, it would take range of cells, and
> fill them with next days of week/month, begining from actual date. Help i
> dont know how to fill next cells with that type of data.... I am just
> begining to program so please write as easiest as you can. thnx

Just use the macro recorder.  While recording a macro, press CTRL + ; (that's
control and semicolon) to insert the date in the current cell.  Then use
autofill to fill as many cells as you want.  Then open the VB editor and
modify your code as desired.

HTH,

Charles



Sat, 05 Mar 2005 06:45:47 GMT  
 
 [ 3 post ] 

 Relevant Pages 

1. HELP! simple question need simple answer

2. HELP! simple question need simple answer

3. HELP! simple question need simple answer

4. need help with simple little program

5. Help, Simple Program Needed

6. Need help with simple timer program!

7. Help! Simple Program Needed

8. Need help with simple program

9. help, help, help...I'm begging here :-\ RE RE POST simple code help needed

10. SIMPLE SIMPLE ListView Question. Please help

11. I NEED simple address program Source

12. Just need simple source code for saving in a program

 

 
Powered by phpBB® Forum Software