+ Reply to Thread
Results 1 to 7 of 7

Update Daily Progress Sheet from Sage Report

  1. #1
    Registered User
    Join Date
    12-02-2013
    Location
    Essex
    MS-Off Ver
    Excel 2013
    Posts
    21

    Update Daily Progress Sheet from Sage Report

    Dear Members

    We use sage 50 Accounts as a Sales and purchasing system and its not very good when it comes to progressing outstanding orders or late deliveries.
    what I am after is creating a Excel workbook for tracking our Sales and Purcahsing. I would like to add 2 custom columns one "Actual ETA" and 2 "comments" to the excel sheet not the sage report.

    the know issue's

    1.) Sagewill not automatically put the data into my work book it will create a temp worksheet - which is fine.
    2.) there is no way to add the Actual ETA and Comments into the sage data before creating the Excel Sheet (becasue if I could do that I wouldnt need to create this workbook)
    3.) how do I remove duplicates sales orders with out removing the information in the 2 extra columns

    I have attached a Sample work book below showing a examples of how the data will be shown. im not sure if the correct approch would be use the built in remove duplicates function or to use VBA to scan the sales order numbers and
    only paste in the numbers that dont exsist.

    another issue that you also may be able to help with is to collapse any repeating sales order numbers.
    i.e I may have a several Sales order with more that one item, the sage report will display each item on its own line is it possible to have a peice of VBA to collapses all the sales order with the same number down to one row that can be expaned and collasped when need.
    Attached Files Attached Files

  2. #2
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,920

    Re: Update Daily Progress Sheet from Sage Report

    Hmm. I could not download the spreadsheet. Also I am going to assume that what you're providing is the sage report itself. I think the solution will involve copying and pasting this data into a spreadsheet that has the formulas and such set up.

  3. #3
    Registered User
    Join Date
    12-02-2013
    Location
    Essex
    MS-Off Ver
    Excel 2013
    Posts
    21

    Re: Update Daily Progress Sheet from Sage Report

    Hi Dflak

    Thanks for the reply, I have reattached the workbook for you. (assuming you wont mind trying again that is)
    yes the idea behind it would be to run the sage reports one for sales and one for purchasing daily which would open in a temp excel files and then copy and paste the data from those reports
    into a progressing workbook that would contain all the code. I know the nature of this task shouts out pivot table, but on this occasions the user would need to add and amend notes for the relevent sale orpurchase order and as far as im aware that is not possible within a pivot table. also just to clarify i would have one worksheet for sales order and one worksheet for purchase orders. I also would considerhiding all the data sheets in the workbook and have a type of front page that pull all the data through. ( just thinkinh allowed now)

    all the code would need to do is delete any repeat orders just making sure that didndt delete any that had comments on.


    Shout if any of the above does not make sense.

    Thanks
    Mark
    Attached Files Attached Files

  4. #4
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,920

    Re: Update Daily Progress Sheet from Sage Report

    OK. I'm looking at the workbook now. How do you define a "repeat order?" Don't discard the possibility of a pivot table just yet. With the help of a helper column or two, you can get pivot tables to do a lot of interesting things.

    However, I am probably going to convert the data range into an Excel Table mostly because Excel tables are very "addressable" and formulas use a natural-language like syntax. Here is some information on Excel Tables: http://www.utteraccess.com/wiki/inde...ables_in_Excel.

  5. #5
    Forum Expert newdoverman's Avatar
    Join Date
    02-07-2013
    Location
    Port Dover, Ontario, Canada
    MS-Off Ver
    2010
    Posts
    10,330

    Re: Update Daily Progress Sheet from Sage Report

    If you have the data from Sage copied into a table, you can have the two additional columns and they will be blank ready to be filled after the copy. A Pivot Table can then be created from the table and refreshed to show the new data.

    Other than that, I'm not at all sure what you want to do.

    Your profile shows that you have Excel 2007, I suggest that you update to the new file format.
    Attached Files Attached Files
    <---------If you like someone's answer, click the star to the left of one of their posts to give them a reputation point for that answer.
    Ron W

  6. #6
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,920

    Re: Update Daily Progress Sheet from Sage Report

    I added a couple of additional helper columns.

    I assumed that a duplicate order was a combination of the customer order number, Product Code and Description. I made a "composite key" from these three items. The composite key is simply a concatenation of the three fields with a delimiter between them for ease of reading. The formula is:
    =[@[Customer O/No]]&"@"&[@[Product Code:]]&"@"&[@[Descprition:]]

    The next helper column is a count of how many times the composite key appears. Duplicates have a count greater than one. The formula is:
    =COUNTIF([Composite],[@Composite])

    The cell after that checks to see if there are comments. =NOT(ISBLANK([@Comments]))

    Finally the column headed "Use" has the following formula: =OR([@[Has Comments]]=TRUE,[@Count]=1)

    Use is true if it has a comment (regardless of how many duplicates might exist) OR it is unique.

    All these helper columns can be hidden.

    Read the information I provided on tables. It will tell you how to clear the data in the table. So clear out the old data, and copy and paste the new data in. The nice thing about tables is that they remember the formulas and copy them down for you.
    Attached Files Attached Files

  7. #7
    Registered User
    Join Date
    12-02-2013
    Location
    Essex
    MS-Off Ver
    Excel 2013
    Posts
    21

    Re: Update Daily Progress Sheet from Sage Report

    Hi Dflak

    Thanks for all your help it looks great I will have a good look around the workbook and read the the information that you provided.

    Thanks Again
    Mark

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Replies: 0
    Last Post: 10-14-2015, 12:53 PM
  2. VBA Macro with button to update daily report with data from the previous day
    By Brenton77 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 04-27-2015, 02:25 PM
  3. Daily Progress Report
    By MdYas in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 08-21-2014, 06:43 AM
  4. How to collect daily report from spread sheet and accumulate for monthly report
    By yshguru in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 04-22-2013, 05:17 PM
  5. [SOLVED] Formula (or way) to update daily the name of report where cell is linked to.
    By fonzireyes in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 01-10-2013, 09:43 AM
  6. Update master sheet from daily report
    By guru.spp in forum Excel General
    Replies: 6
    Last Post: 06-11-2008, 09:43 AM
  7. Auto update daily report problem
    By SteveG in forum Excel General
    Replies: 4
    Last Post: 02-09-2006, 04:30 PM

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