Help Arranging Billing Dates

Copper Contributor

I know that this is a really simple issue, guys and gals.

 

I am tracking monthly subscriptions.

 

I have multiple columns with name, billing date, amount, and account.

 

I have billing dates entered in a simple format of 1st, 2nd, 3rd, etc. of the month.

 

I am having trouble sorting these dates by order of first to last.  It's not possible as it is now.

 

How can I reformat so that I can easily rearrange my data by chronological progression into the month?

2 Replies

Hi @cwatters86

First of, you need to ensure your column have a headers on line 1 (date, vendor, amount and so on), then select line 1, look for "Sort & Filter" in the ribbon Home tab and select "Filter".

This will add the possibility to sort the columns however you want (chronological up or down, alphabetical up or down). You just have to click the arrow next to the header you want to sort and select the direction you want it.

 

@cwatters86  I'm betting another person here will find a more clever solution but here is mine:

insert a new column with this formula (assuming col A has the 1st, 2nd, 3rd, etc... text in it):

=IF(ISNUMBER(--LEFT(A1,2)),--LEFT(A1,2),--LEFT(A1,1))

Then sort by this new column