Announcement

Collapse
No announcement yet.

export sales by agent

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    export sales by agent

    I am looking at being able to export to excel via a sql query my moto sales with details of who took the order.

    Has anyone been able to achieve this or know whether it is possible?
    www.flytesofancy.co.uk, www.electricfencingkits.co.uk, www.dorsetlogstores.co.uk, www.framebow.co.uk

    #2
    It shouldn't be too difficult as long as the agent info is stored with the order.

    If you're familiar with excel then you should be able to do it using the excel database query tool / wizard.

    Mike
    -----------------------------------------

    First Tackle - Fly Fishing and Game Angling

    -----------------------------------------

    Comment


      #3
      Thanks Mike.

      That was what i was hoping to do but is very reliant on whether that data is linked in the tables.

      Would be interested to hear if anyone has been able to achieve this.
      www.flytesofancy.co.uk, www.electricfencingkits.co.uk, www.dorsetlogstores.co.uk, www.framebow.co.uk

      Comment


        #4
        Here's some SQL that lists Offline (MOTO) orders, user name & date/time (MM/DD/YYYY date format !)

        SELECT Order.[Order Number], OrderHistory.sUserName, OrderHistory.sDate
        FROM ([Order] INNER JOIN OrderHistory ON Order.[Order Sequence Number] = OrderHistory.nOrderID) INNER JOIN SetupInfo ON Order.[Order Number] LIKE SetupInfo.sData & "*"
        WHERE (((SetupInfo.sName)="Offline Order Number Prefix") AND OrderHistory.sAction = "Order Created");


        Hope that's some help
        Mike
        Last edited by miketait; 23-Nov-2015, 07:56 PM. Reason: Change SQL to only show order creation detail

        Comment


          #5
          Hi Gareth,

          If you decide not to go the SQL route, you can use our order processing tools to do this. They are fully configurable, so you can define any export format you like. Either of these would do it :

          Multichannel Order Processing :
          http://www.1stoporders.co.uk/

          Sellerdeck Order Processing :
          http://www.mole-end.biz/acatalog/Mul...r-Actinic.html

          You would need to have the Agent information available in the order details.

          Regards,
          Jan Strassen, Mole End Software - Plugins and Reports for Actinic V4 to V11, Sellerdeck V11 to V2018, Sellerdeck Cloud
          Visit our facebook page for the latest news and special offers from Mole End

          Top Quality Integrated label paper for Actinic and Sellerdeck
          A4 Paper with one or two peel off labels, free reports available for our customers
          Product Mash for Sellerdeck
          Link to Google Shopping and other channels, increase sales traffic, prices from £29.95
          Multichannel order processing
          Process Actinic, Sellerdeck, Amazon, Ebay, Playtrade orders with a single program, low cost lite version now available from £19.95

          Comment

          Working...
          X