Convert code rows to columns

P

Piranha

Hi,
This code was posted by Norman Jones i believe. It works great.

Code
-------------------
Sub test()
Cells(LastRow(ActiveSheet) + 1, "A").Value = "Hi this is one row below the Last Used Row"
End Sub

Function LastRow(sh As Worksheet)
On Error Resume Next
LastRow = sh.Cells.Find(What:="*", _
After:=sh.Range("A1"), _
Lookat:=xlPart, _
LookIn:=xlFormulas, _
SearchOrder:=xlByRows, _
SearchDirection:=xlPrevious, _
MatchCase:=False).Row
On Error GoTo 0
End Functio
-------------------

I tried to change it for Columns instead of Rows. what am i doin
wrong?

Code
-------------------
Sub test()
Cells(LastCol(ActiveSheet) + 1, "A").Value = "Hi this is one column past the Last Used Column"
End Sub

Function LastCol(SH As Worksheet)
On Error Resume Next
LastColumn = SH.Cells.Find(What:="*", _
After:=SH.Range("A1"), _
Lookat:=xlPart, _
LookIn:=xlFormulas, _
SearchOrder:=xlByColumns, _
SearchDirection:=xlPrevious, _
MatchCase:=False).Column
On Error GoTo 0
End Functio
 
G

Gary Keramidas

try this

Sub test()
Cells(1, Lastcol(ActiveSheet) + 1).Value = "Hi this is one column right
the Last Used column"
End Sub

Function Lastcol(sh As Worksheet)
On Error Resume Next
Lastcol = sh.Cells.Find(What:="*", _
After:=sh.Range("A1"), _
Lookat:=xlPart, _
LookIn:=xlFormulas, _
SearchOrder:=xlByColumns, _
SearchDirection:=xlPrevious, _
MatchCase:=False).Column
On Error GoTo 0
End Function
 
M

mudraker

Function LastCol(SH As Worksheet)
On Error Resume Next
LastColumn = SH.Cells.Find(what:="*", SearchOrder:=xlByColumns, _
SearchDirection:=xlPrevious).Column
On Error GoTo 0
End Function
 
G

Guest

I suggest you made typo error only.

1 You get the LastColumn correctly;
2 The function returns LastCol which is NOT set;
3 Cells is defined by row then column. You did not switch them over.

Regards
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top