Sorting a column in my table without changing the data

I am trying to sort a column in my table:

Table - โ€œCustomersโ€
Column - โ€œCustomer_Nameโ€

All i want is the column โ€œCustomer_Nameโ€ to be in ascending order by name.

I have tried using SORT().
I tried ORDERBY

I tried putting the formulas in โ€œValid_IFโ€ and โ€œFormulaโ€

I am at a loss. Any help would be greatly appreciated.

Thanks

Solved Solved
1 6 683
1 ACCEPTED SOLUTION

WORKED PERFECTLY. Thanks so much Steve!

View solution in original post

6 REPLIES 6

Steve
Platinum 4
Platinum 4

Row sorting in a table view is controlled exclusively by the column sort order indicated in the view configuration itself:

Sorry. The table โ€œCustomersโ€ is referenced by another table โ€œTicket logโ€. Inside the ticket lo - i have the column โ€œcustomer Nameโ€ - which comes from that table.

So basically it is a referenced column that i need sorted. I cannot sort it how you showed. It is not a table VIEW. i use it in a form (dropdown menu)

Ah, sorry I misinterpreted your problem. Have you seen this?

Thanks. But i dont want to filter out anything. I am sorry i am not explaining this very well.

I have two tables - โ€œCustomersโ€ and โ€œTicket Logโ€.

Customers table has โ€œCustomer_Codeโ€ - the key and โ€œCustomer_Nameโ€ - the Label

Ticket Log table has โ€œCustomer keyโ€ - reference to โ€œCustomersโ€ table and โ€œCustomerโ€ - [Customer key[.[customer_name].

I need the Column โ€œCustomerโ€ from the Ticket Log Table - to list all those reference names customers in ascending order.

The doc I referenced above is relevant. You should read it.

Set the Valid If expression for the Customer key column of the Ticket Log table to:

ORDERBY(Customers[Customer_Code], [Customer_Name], FALSE)

WORKED PERFECTLY. Thanks so much Steve!

Top Labels in this Space