Home |
Search |
Today's Posts |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Oops. I missed to mention the sort order.. Modified the code so as to call
from code by passing the row to be sorted... such as SortWOBlanks 1 will sort the first row. Sub SortWOBlanks(lngRow As Long) Dim lngCol As Long Dim lngCount As Long Dim lngLastCol As Long Dim varTemp As Variant Dim arrTemp As Variant Application.ScreenUpdating = False lngLastCol = Cells(lngRow, Columns.Count).End(xlToLeft).Column varTemp = Range(Cells(lngRow, 1), Cells(lngRow, lngLastCol)) Range(Cells(lngRow, 1), Cells(lngRow, lngLastCol)).Sort _ Key1:=Range("A" & lngRow), Orientation:=xlLeftToRight lngCol = ActiveSheet.Cells(lngRow, Columns.Count).End(xlToLeft).Column arrTemp = Range(Cells(lngRow, 1), Cells(lngRow, lngCol)) Range(Cells(lngRow, 1), Cells(lngRow, lngLastCol)) = varTemp For lngCol = 1 To lngLastCol If Cells(lngRow, lngCol) < "" Then lngCount = lngCount + 1 Cells(lngRow, lngCol) = arrTemp(1, lngCount) End If Next Application.ScreenUpdating = True End Sub If this post helps click Yes --------------- Jacob Skaria "Anthony" wrote: i would like a code for autosort left to rigth eg 1-3-5-7-3-8-4- "- represents blank cell" 1-3-3-4-5-7-8- leaving blank where they are |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
excel 2007 sorting leaving blanks where they are left to rigth | Excel Programming | |||
Left, top, rigth and bottom points dimensions in a 3d Chart | Excel Programming | |||
autosort left to right | Excel Programming | |||
set left rigth margins for header i need it wider to the edge of t | Excel Discussion (Misc queries) | |||
WHAT DO I MICROSOFT EXCEL IN THE RIGTH TO LEFT | Charts and Charting in Excel |