Search results

  1. W

    Continuous Form text box not painting

    I have a calculated text box on a continuous form that doesn't paint in form view unless I click on the box. Any ideas why this might be?
  2. W

    Sql

    MS Access is a Database management system (DBSM). SQL is a language used to interact with databases. MS access provides you a GUI to manipulate the SQL. ...more or less.
  3. W

    table construction

    See attachment dummy example
  4. W

    "denormalizing" data for easy analysis in excel

    Make your query so you have your standard normalized query. Convert Query to a pivot-view. Move your [TestName] field to the Columns section of the pivot-view.
  5. W

    table construction

    All three tables require independent data input. Think of it as 2 separate lists - A list of all your Contractors (textbox to add new contractor) - A list of all your Locations (textbox to add new location) And 1 final list that links the two - a list indicating which locations go with which...
  6. W

    Possible to "automatically" lookup data in a table without a query??

    No. Joining two tables is the point of Queries Also, unless it's a foreign key, you would almost never want to do this (see - wiki "Normalization")
  7. W

    How to resolve Trust issues?

    Do you get a warning message saying you can't run the code because it's "Suspicious" ? What error number is that? And is it the same error number as an "execution error" ? It sounds to me like you may have compatibility issues beyond your Trust Center trouble.
  8. W

    Question Opening Access

    This could be a number of problems. Version incompatibility - does everyone use the same version of Access? - same version of Windows? - etc. - Intranet / network trouble - if the network hiccups on your end-user, the access front end will drop connection to backend; frontend will still...
  9. W

    Create pivot, use Late Binding

    Dim xlApp as Excel.Application ' early binding Dim xlApp as Object set xlApp = CreateObject("Excel.Application") ' late binding
  10. W

    table construction

    If there's 600 combinations, there's 600 combinations. Whether it's in one column (field), or split between 5 different tables and 5 different columns, you still have the same data. Having just 1 column for all the data keeps it more organized and easier to retrieve/manipulate -- much much...
  11. W

    Removing Grand totals from Query PivotTable

    Access can be a bit finicky. Consider dropping the whole thing into a continuous form to manipulate appearances. Good luck!
  12. W

    Removing Grand totals from Query PivotTable

    Are you right-clicking specifically on the header? It should highlight all fields associated.
  13. W

    Removing Grand totals from Query PivotTable

    Are you subtotaling any of the fields? edit: right click each column and unselect SubTotal.
  14. W

    Removing Grand totals from Query PivotTable

    oddly enough, you just change this in the ribbon. There's a menu item in the HOME tab - Under Records section. (sigma) Totals. Just click it.
  15. W

    table construction

    I strongly encourage you to wiki "Normalization" and read through the page until you feel you understand it. - Delete all your skill tables. - Replace fields in tbl_User-Skills with: User_ID (foreign key - joins contractor to skills) Skill_ID (foregin key - joins skills to contractor -...
  16. W

    Select Control While in Design View

    Test bed for dynamically designed forms. Hand-in-Hand in my mind is manipulation of objects on existing forms. Currently, I have a form with Box1 overlapping partially with Box2. I'm attempting to allow a user to move Box1 behind Box2 when Box1 is clicked in Form View.
  17. W

    Select Control While in Design View

    I've failed miserably at using names. :( I've the feeling that Controls don't have names assigned until post-processing that occurs when you switch out of Design mode. If you could provide a simple example that would be great.
  18. W

    Select Control While in Design View

    Is there VBA code to select a control on a form that is currently in design view?
  19. W

    Make Multiple Tables Using Parameters from List

    You could probably run a basic loop through the recordset? Pseudocode to add to a random button on a random form --- set Rs = currentDB.openrecordset ("Select ADNames From ADTable") Do While Not Rs.EOS strTableName = "t_" & Rs("ADNames") 'create table strSQL = "CreateTable " & strTableName...
  20. W

    working directory VBA

    paste into a button click. Set objDialog = Application.FileDialog(4) With objDialog .AllowMultiSelect = False .Title = "Please select a File" .InitialFilename = "C:\" .Show If .SelectedItems.Count = 0 Then MsgBox ("Action Cancelled")...
Back
Top Bottom