Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by chainedtodesk

  1. chainedtodesk

    aspx not loading on new server build

    i had a server crash, and needed to rebuild an sharepoint server. on this intranet sharepoint we had three reports that were inherited. they look to an sql db and show snapshots of daily data. i recovered the wwwroot folder from the original server and added it to the new one. installed all of...
  2. chainedtodesk

    IIF statement issue.....

    thanks Andy, that was the answer worked like a champ. thanks much
  3. chainedtodesk

    IIF statement issue.....

    i am trying to execute the following "IIF" statement but get errors, i have a calc to figure out number of days a ticket is open. then there is a ct field that i need to add to that, but sometimes there isnt a ct and its null, so i thought i should be able to add the iff statement that if the CT...
  4. chainedtodesk

    can you use a "where" in an excel macro select statement

    created a query in access to get all my data buckets as needed and was able to get the process to work, couldnt get where statement to work will try to revisit when this time pressued project is complete. thanks all
  5. chainedtodesk

    creating line graph from access query

    I have an access query that gives me a count by days buy type, i want to create a line graph from this, with a line for each type. i can get a single line to work just by the dates and counts, but i cant get it to generate anything if i try to add the type in the code. the attached code works...
  6. chainedtodesk

    can you use a "where" in an excel macro select statement

    i have a macro that pulls data from a specific access table, i do not want to add more updates to the access DB but would instead like to update the macro. the file has now accumulated two years worth of data and the grid is very cluttered so i would like to only pull the current year, but no...
  7. chainedtodesk

    calculating multi years data

    i have a table that has 3 years of data in it. the data is broken out by a salesman, a product type, sales dollars, year. i was able to use a cross tab to get the records to disply as needed for management, but now they are requesting a difference column either dollars or percentage but it needs...
  8. chainedtodesk

    update AS400 table from MS Access db

    is there anyway to update an as400 table with info from an MS Access db. i read several posts on lots of sites saying journaling needed to be turned on and that the table on the 400 could not have a keyed field i have done all of this but still receive the #7800 error everytime i try to post the...
  9. chainedtodesk

    excel chart from vba

    okay thanks, i will try it with the summary formulas.
  10. chainedtodesk

    excel chart from vba

    i have a process that creates an excel chart, i would like for the chart to not have the filter pivot table options. these are gray buttons to the top/bottoms/sides based on the pivot table. CODE: Sub chart_share1() Start_Row = 13 Chart_Name = "NEW PRODUCTS BOOKINGS" Counter = 1...
  11. chainedtodesk

    build table with multiple lines some duplicates

    thanks all for your responses, i will try all suggestions a post which one works best for this application.
  12. chainedtodesk

    build table with multiple lines some duplicates

    i have to create a pick list for an order system, and what i have to do as part of this is generate labels. some items have multiple quantities. so example is (ItemNbr, ItemDesc, Qty) 123456 SamplePart 3. i would like the query to dup that particular line into the label table 3 times, then move...
  13. chainedtodesk

    update query with a sub query

    problem solved, thanks for all that helped: here is the working code: UPDATE RKBOOKTEST SET (JQCHNB) = (SELECT RKBOOKUPD.JQCHNB FROM RKBOOKUPD WHERE RKBOOKTEST.JQCVNB = RKBOOKUPD.JQCVNB AND RKBOOKTEST.JQCANB =...
  14. chainedtodesk

    update query not working

    problem solved, thanks for all that helped: here is the working code: UPDATE RKBOOKTEST SET (JQCHNB) = (SELECT RKBOOKUPD.JQCHNB FROM RKBOOKUPD WHERE RKBOOKTEST.JQCVNB = RKBOOKUPD.JQCVNB AND RKBOOKTEST.JQCANB =...
  15. chainedtodesk

    update query with a sub query

    i have a table that an occasional user will not populate a major field, and i need to catch this before it goes any further. i tried the following code for an update prior to pushing this data out but the query fails. the two tables are large and have multiple records but the main links are...

Part and Inventory Search

Back
Top