Home |
Search |
Today's Posts |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
Here is sample code for a change event: Private Sub Worksheet_Change(ByVal Target As Range) Dim isect As Range Set isect = Application.Intersect(Target, Range("A1")) If Not isect Is Nothing Then 'Your code here End If End Sub If this is for sheet1 then 1. press Alt+F11 2. double click the Sheet1 object in the top left corner of the screen (the Project window) 3. add your code. In your case you may want to record the sort routine so you can put it into the "your code here" location. -- If this helps, please click the Yes button Cheers, Shane Devenshire "BG" wrote: I have a spreadsheet and I want to sort rows and columns automatically as I enter data into blank cells. What is the best way to do this? |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Sorting Rows/Columns Automatically | Excel Worksheet Functions | |||
Sorting Rows/Columns Automatically | Excel Worksheet Functions | |||
Sorting Rows/Columns Automatically | Excel Worksheet Functions | |||
Sorting Several Columns/Rows Automatically | Excel Worksheet Functions | |||
Sorting automatically by columns | Excel Discussion (Misc queries) |