ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   How do I set auto-sort for a column in a worksheet? (https://www.excelbanter.com/excel-programming/418197-how-do-i-set-auto-sort-column-worksheet.html)

FVO

How do I set auto-sort for a column in a worksheet?
 
Hi;
I need to create a worksheet to keep record of customers.
I have the following example:
NAME PHONE ADDRESS CONTRACT WK1 WK2
Phil 123-456
Angel 321-654
John 987-630

I need to keep the first row as the titles row, and need the worksheet to
automatically sort in alphabetical order based on the name, and to do it
everytime a new customer is added to the list.

HOW CAN I DO THAT?

Regards,
FVO

Jim Thomlinson

How do I set auto-sort for a column in a worksheet?
 
What you are asking for can be done but I would make it more semi automatic
than automatic. Your end users are going to find it very disconcerting to add
a customer and have the sheet automatically resort. They enter the customer
name and the sheet resorts. Now the customer they were working on is
somewhere in the list and they need to go find it to enter the rest of the
customer data... I would just add a button and attach a sort macro to it. You
can also have the sheet resort when the user leaves the sheet. I have had a
lot more luck with that...

The button is very straight forward to do. If you want help with the resort
on leaving the sheet just reply...
--
HTH...

Jim Thomlinson


"FVO" wrote:

Hi;
I need to create a worksheet to keep record of customers.
I have the following example:
NAME PHONE ADDRESS CONTRACT WK1 WK2
Phil 123-456
Angel 321-654
John 987-630

I need to keep the first row as the titles row, and need the worksheet to
automatically sort in alphabetical order based on the name, and to do it
everytime a new customer is added to the list.

HOW CAN I DO THAT?

Regards,
FVO


JP[_4_]

How do I set auto-sort for a column in a worksheet?
 
Why not add a command button to the sheet, so you can sort on demand?

Then just record a macro of yourself sorting on whatever field you
want, and attach the code to the button. It will re-sort every time
you click.


HTH
--JP


On Oct 7, 1:50*pm, FVO wrote:
Hi;
I need to create a worksheet to keep record of customers.
I have the following example:
NAME * * PHONE * * ADDRESS * * CONTRACT * * WK1 * * WK2
Phil * * * *123-456 *
Angel * * 321-654
John * * *987-630

I need to keep the first row as the titles row, and need the worksheet *to
automatically sort in alphabetical order based on the name, and to do it
everytime a new customer is added to the list.

HOW CAN I DO THAT?

Regards,
FVO



FVO

How do I set auto-sort for a column in a worksheet?
 
Jim;
What you are saying about a command bottom seems to be the best option.
Could you help me with it? Thanks in advance!

"Jim Thomlinson" wrote:

What you are asking for can be done but I would make it more semi automatic
than automatic. Your end users are going to find it very disconcerting to add
a customer and have the sheet automatically resort. They enter the customer
name and the sheet resorts. Now the customer they were working on is
somewhere in the list and they need to go find it to enter the rest of the
customer data... I would just add a button and attach a sort macro to it. You
can also have the sheet resort when the user leaves the sheet. I have had a
lot more luck with that...

The button is very straight forward to do. If you want help with the resort
on leaving the sheet just reply...
--
HTH...

Jim Thomlinson


"FVO" wrote:

Hi;
I need to create a worksheet to keep record of customers.
I have the following example:
NAME PHONE ADDRESS CONTRACT WK1 WK2
Phil 123-456
Angel 321-654
John 987-630

I need to keep the first row as the titles row, and need the worksheet to
automatically sort in alphabetical order based on the name, and to do it
everytime a new customer is added to the list.

HOW CAN I DO THAT?

Regards,
FVO


FVO

How do I set auto-sort for a column in a worksheet?
 
JP;

You and Jim have the same opinion and it seems to be the best. I'm very
novice with excell. Could you (or Jim) help on that Command Buttom and adding
the MACRO to it? THANKS!!

FVO

"JP" wrote:

Why not add a command button to the sheet, so you can sort on demand?

Then just record a macro of yourself sorting on whatever field you
want, and attach the code to the button. It will re-sort every time
you click.


HTH
--JP


On Oct 7, 1:50 pm, FVO wrote:
Hi;
I need to create a worksheet to keep record of customers.
I have the following example:
NAME PHONE ADDRESS CONTRACT WK1 WK2
Phil 123-456
Angel 321-654
John 987-630

I need to keep the first row as the titles row, and need the worksheet to
automatically sort in alphabetical order based on the name, and to do it
everytime a new customer is added to the list.

HOW CAN I DO THAT?

Regards,
FVO




Jim Thomlinson

How do I set auto-sort for a column in a worksheet?
 
Record a macro whereby you sort the range in question. Name it "SortStuff" or
something similar.

On the forms toolbar there is acommand button object. Click it and draw a
button on your sheet. When you finish drawing it a dialog will come up asking
you to assing a macro. Assign your macro and you are good to go...
--
HTH...

Jim Thomlinson


"FVO" wrote:

Jim;
What you are saying about a command bottom seems to be the best option.
Could you help me with it? Thanks in advance!

"Jim Thomlinson" wrote:

What you are asking for can be done but I would make it more semi automatic
than automatic. Your end users are going to find it very disconcerting to add
a customer and have the sheet automatically resort. They enter the customer
name and the sheet resorts. Now the customer they were working on is
somewhere in the list and they need to go find it to enter the rest of the
customer data... I would just add a button and attach a sort macro to it. You
can also have the sheet resort when the user leaves the sheet. I have had a
lot more luck with that...

The button is very straight forward to do. If you want help with the resort
on leaving the sheet just reply...
--
HTH...

Jim Thomlinson


"FVO" wrote:

Hi;
I need to create a worksheet to keep record of customers.
I have the following example:
NAME PHONE ADDRESS CONTRACT WK1 WK2
Phil 123-456
Angel 321-654
John 987-630

I need to keep the first row as the titles row, and need the worksheet to
automatically sort in alphabetical order based on the name, and to do it
everytime a new customer is added to the list.

HOW CAN I DO THAT?

Regards,
FVO


JP[_4_]

How do I set auto-sort for a column in a worksheet?
 
Follow Jim's advice in his last post :)

If you need to locate the Forms toolbar, just go to View Menu,
Toolbars, Forms.

--JP


On Oct 7, 2:44*pm, FVO wrote:
JP;

You and Jim have the same opinion and it seems to be the best. I'm very
novice with excell. Could you (or Jim) help on that Command Buttom and adding
the MACRO to it? THANKS!!

FVO



"JP" wrote:
Why not add a command button to the sheet, so you can sort on demand?


Then just record a macro of yourself sorting on whatever field you
want, and attach the code to the button. It will re-sort every time
you click.


HTH
--JP




All times are GMT +1. The time now is 07:01 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com