+ Reply to Thread
Results 1 to 4 of 4

sales spreadsheet

  1. #1
    Registered User
    Join Date
    07-17-2007
    Posts
    5

    sales spreadsheet

    \1

    im trying to move from a paper sales system to one in excel. here's what im using for now (see pic), its working well, but the 'time to call' bit is a bit strange, on paper im used to writing CB w13mon3p which means 'week 13, monday, 3pm'. this is a very fast input method on paper, but it doesnt 'sort' very well in EXCEL (eg. w1 w11 w2 or fri, mon, thur, tue, wed). maybe i should create three hidden columns, after the columns you can see in the pic, and get EXCEL to read 'w2' as '2'. mon as '1'. and 3:30p as 15:30p.

    then create a macro to sort by the hidden columns. what do you think ?

  2. #2
    Valued Forum Contributor
    Join Date
    02-09-2006
    Location
    Melbourne, Australia
    MS-Off Ver
    Office 2016
    Posts
    1,075
    Your hidden column idea would certainly work. Create separate columns (say, A, B, C, & D) for each element you want to sort by, then in column E join the data together for display purposes, like this:
    =A1&B1&C1&D1
    Trish in Oz
    -------------
    A problem well defined is a puzzle half solved


    If you attach a sample of your workbook it will be easier to find a solution. Remember to remove/replace sensitive data before uploading the file. Look here if you need help with attachments:
    http://www.excelforum.com/faq.php?fa...b3_attachments

  3. #3
    Registered User
    Join Date
    03-09-2006
    Location
    Australia
    Posts
    80
    And this sort of macro addition may help to automatically add in the changes to the input in order to simplify the sorting:

    sub Search & Replace Macro()
    Columns("B:B").Select
    Range("B2").Activate
    Selection.Replace What:="mon", Replacement:="1",LookAt:=xlPart, _
    SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
    ReplaceFormat:=False
    End Sub

  4. #4
    Registered User
    Join Date
    07-17-2007
    Posts
    5
    thanks for that, after all that im still considering figuring out a fast way to use a real date figure. eg. entering "12 july 07 12:30pm" my idea seems a bit silly in excel, i figure thousands of excel users have already worked something better out.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1