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 derfloh 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. Thankyou12

    Charts from 2003 not working in 2007

    Hey Thanks kjv1611. I think I have it all set.
  2. Thankyou12

    Charts from 2003 not working in 2007

    I coded something different: Private Sub ComboBox1_Change() 'Unprotect worksheet that contains the charts Worksheets("Supply").Unprotect Password:="Secret" On Error GoTo 1 With Worksheets("Supply").ChartObjects(2).Chart.Axes(xlValue) .MaximumScale = Range("AF2").Value .MinimumScale =...
  3. Thankyou12

    Charts from 2003 not working in 2007

    I have the following code: Private Sub Workbook_Open() Worksheets("Supply").Protect Password:="Secret", _ UserInterFaceOnly:=True End Sub I get a compile error "Expected: named Parameter
  4. Thankyou12

    Charts from 2003 not working in 2007

    Yes. Macros are enabled. The sheet was protected. When I unprotect the sheet the graphs look fine. It must be something to do with the protection. How can I protect the sheet and get the graphs to work?
  5. Thankyou12

    Charts from 2003 not working in 2007

    Hello, I'm new to Excel programming. I inherited a report created using Excel 2003. The charts on the report have a scale that changes based on a combo box value. It works fine in 2003 but in 2007 the scale remains fixed. The line graph on the charts falls off the grid for certain combo box...
  6. Thankyou12

    New to Access. Help me with Forms.

    Thanks, that worked great. On the form 2 I need to display the savings values for the factory I entered in form 1. Is there a way to tie them together like that?
  7. Thankyou12

    New to Access. Help me with Forms.

    I now have a switchboard, two forms - one to add the Factory Names and then another to add the savings for each factory and then a report that displays the calculated values for each factory. It is wonderful. Is it feasible to create a button on form 1 so that when a user enters a Factory it...
  8. Thankyou12

    New to Access. Help me with Forms.

    Thanks! This is a lot of fun. I created the form and it works fine. I found some redundant data in my table. I created another table and placed a relationship between the two tables. Is there any way I can update both table using one form? Thanks again.
  9. Thankyou12

    New to Access. Help me with Forms.

    Hello, I'm new to Access. I need to build a database and create forms to update the database. I'm using Access 2007. I have built the database with 10 fields. The primary key is the ID field. I want to update, delete or add new records to the database using forms and controls. The updates and...

Part and Inventory Search

Back
Top