[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

daniroy

12/15/2006 11:13:00 AM

I am trying to fill every column for B to whatever with "test".
I use following function to define the range. In this case Last_Column
= 12

Function Last_Column(My_Range As Range) As Long

Last_Column = Application.WorksheetFunction.CountA(My_Range)

End Function

Then I am using the Sub

Sub testa()

For j = 2 To Last_Column(Sheets("test").Rows("1:1"))

Sheets("test").Range(j & "2").Value = "test"

Next j

End Sub

Obvioysly I am not well defining the range. I guess I go wrong on
Range(j & "2").Value

Sorry to be so dumb/ignorant
and thanks for the help/merry xmas

1 Answer

daniroy

12/15/2006 11:29:00 AM

0

Found it
Sheets("test").Cells(i, j).Value = "test"
Tks
Dan

On Dec 15, 11:12 am, dani...@gmail.com wrote:
> I am trying to fill every column for B to whatever with "test".
> I use following function to define the range. In this case Last_Column
> = 12
>
> Function Last_Column(My_Range As Range) As Long
>
> Last_Column = Application.WorksheetFunction.CountA(My_Range)
>
> End Function
>
> Then I am using the Sub
>
> Sub testa()
>
> For j = 2 To Last_Column(Sheets("test").Rows("1:1"))
>
> Sheets("test").Range(j & "2").Value = "test"
>
> Next j
>
> End Sub
>
> Obvioysly I am not well defining the range. I guess I go wrong on
> Range(j & "2").Value
>
> Sorry to be so dumb/ignorant
> and thanks for the help/merry xmas