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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Rseven

    Class Registration System in SharePoint

    I am fairly new to SharePoint and I am trying to create a registration system in SharePoint by combining two lists: 1. Class Calendar 2. Class Attendees This will be used to setup learning and development classes for the department. The administrator of the program will use List #1 to setup...
  2. Rseven

    Publish to Sharepoint

    Ok, so the document gets posted to the sharepoint site, hence the working perfectly. The exception is, the library it gets posted to is Grouped by a field named "Report". When it gets uploaded, it is Grouped under a blank report type because the "Report" is not specified at the time of the...
  3. Rseven

    Publish to Sharepoint

    Hello All, Below is some code I have in MS Access 2007 VBA that uploads documents to our SharePoint site. It works perfectly with one exception. What I would like it to do once it is loaded to the site is to be placed in a master document library that is grouped by the report name. The report...
  4. Rseven

    Create a Catalog

    I have full access and control of the data, code and database.
  5. Rseven

    Create a Catalog

    Thanks MajP, I'll give it a try. I appreciate the all the feedback. You hit it on the head. The data is stored in an Access database, then exported to Excel via VBA. From there I have VBA that reads Excel and copies and pastes the items in PPT. Once in PPT I would like to create and...
  6. Rseven

    Create a Catalog

    Thanks for the feedback. Unfortunately due to privacy I had to remove some of the data and paste it as an image. In the real presentation, the objects are not locked down. The report is sourced through MS Excel and there is VBA in Access that copies and pastes the information into a...
  7. Rseven

    Create a Catalog

    Good Morning,Was looking for some assistance with some VBA code to create a catalogue of items in a PowerPoint report. For example I have a list of customer numbers that I want to lookup in the report and list the page # they are on for quick reference. Please see attachment Thank you in...
  8. Rseven

    Disabling navigation navigation and menus with VBA

    Dan08 Try holding down the SHIFT key while opening the database. Also, depending on the security settings for your database, you might see one or more security messages on startup. You need to continue holding down the SHIFT key until you close the security messages, or the startup options...
  9. Rseven

    Date Change Calculation

    Thanks dhookom, my biggest obstacle was to get the dates on the same row for the calculation. Worked great!! PH, thanks for the input also. I will be sure to provide more information going forward Thanks again to you both Rico
  10. Rseven

    Date Change Calculation

    Unfortunately I have not started the code as I am not 100% sure where to begin. I have written the queries that group the IDs and the dates together, but because they are seperate entities, I am unsure how to apply the DateDiff function to the records. I apologize if there wasn't enough...
  11. Rseven

    Date Change Calculation

    Good afternoon All, I am trying to calculate the incremental increase (in months) at each change of the CURRENT_TARGET_DT for a given ISSUE_ID with multiple occurances on different rows. Can anyone give me an idea? Basically, looking at the data below I would need to calculate the difference...
  12. Rseven

    Excel Year over Year

    I apologize it was formatted better before i posted it.
  13. Rseven

    Excel Year over Year

    Hello All, I am trying to do a year over year calculation based on month to month data which is represented in another cell for a dashboard. I have the YoY calculations working but because that % needs to be represented on a seperate worksheet in a dashboard I can only get the current month %...
  14. Rseven

    Change Default Printer

    ...= Application.Printers("Adobe PDF To Reporting") End Select The following is the remainder of the code for sub-routine '*** Check if this directory and file exist, and if not then notify the user and move to the next report Set fs = New Scripting.FileSystemObject...
  15. Rseven

    #Name Error

    I will do the step thru and see if I can figure out what's happening. Thanks for your time and attention
  16. Rseven

    #Name Error

    Thanks, I did not notice that. It's fixed. The error is showing up on a form data field that i am trying to populate with the autogenerated number Thanks again
  17. Rseven

    #Name Error

    ...& "-" & Format(1, "0000") Else 'Determine new sequential number iLastNbr = Lrs("Last_Nbr_Assigned") .Value '*** Increment the last number assigned iLastNbr = iLastNbr + 1 Lrs.Edit Lrs("Last_Nbr_Assigned") = iLastNbr...
  18. Rseven

    Updating Combo Box

    Thanks for all the responses. I read the FAQ section and found what I needed and it worked like a charm. Thank you all very much!!
  19. Rseven

    Updating Combo Box

    Hello, I am trying to create a form that has a combo box with certain values for a given category and once a value is selected, a 2nd combo box gets populated with the sub-categories from the 1st combo box. Is this possible? Thanks in advance
  20. Rseven

    Date Bump Help

    Lilliabeth, Absolutely awesome!! I had something similar but had the dateadd and datediff functions reversed and couldn't figure it out for the life of me. Thank you so much, this saves me hours of work!

Part and Inventory Search

Back
Top