Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() 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 ------------------- Dav -- Piranh ----------------------------------------------------------------------- Piranha's Profile: http://www.excelforum.com/member.php...fo&userid=2043 View this thread: http://www.excelforum.com/showthread.php?threadid=47568 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Convert Columns to Rows | Excel Discussion (Misc queries) | |||
Convert Columns to Rows | Excel Discussion (Misc queries) | |||
convert columns to rows | Excel Worksheet Functions | |||
Convert rows to columns | Excel Worksheet Functions | |||
to convert columns to rows having mulit independent group columns | Excel Worksheet Functions |