Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hello
With the macro macro_C(), I call the macro C_N all the 28 rows. Select column 17 of each row for puts the result of C_N at it How to make so that C_N holds account of the values of column 1 with that of the last nonempty cell of the line in progress of lig Sub macro_C() Dim lig As Integer Dim Col As Integer For lig = 1 To 100 Step 28 For Col = 1 To 1 Next Cells(lig, 17).Select Call C_N Next End Sub thank you |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I think what you want is something like this:
Call Testing(lastEntry) Sub Testing(lastEntry as variant) blah blah blah End Sub "PST" wrote: Hello With the macro macro_C(), I call the macro C_N all the 28 rows. Select column 17 of each row for puts the result of C_N at it How to make so that C_N holds account of the values of column 1 with that of the last nonempty cell of the line in progress of lig Sub macro_C() Dim lig As Integer Dim Col As Integer For lig = 1 To 100 Step 28 For Col = 1 To 1 Next Cells(lig, 17).Select Call C_N Next End Sub thank you |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Insert Variable Number of Rows; With Loop | Excel Worksheet Functions | |||
Loop thru rows to copy to another excel spreadsheet | Excel Worksheet Functions | |||
How to Delete Rows in Excel In a Do Loop | Excel Worksheet Functions | |||
Loop through folder of workbooks and add rows | Excel Worksheet Functions | |||
loop thru column and highlight the rows | Excel Discussion (Misc queries) |