Recent content by waylander32

  1. W

    simple spreadheet

    Hi trying to design a very simple spreadsheet that calculates wages. the problem I'm having is this I have one sheet that has all the personnel detail 1 line per person (data) I have another sheet that has all the times. on this sheet one person has 4 rows (input) The key details are...
  2. W

    please help

    thanks fro the reply I have tried that the subform is linked via unique reference so that the jobs codes it pull up match are the correct ones for that job. The price of the job is dictated by the client and I couldn't get it to link to both so i need to put a criteria in the query which...
  3. W

    please help

    HI hoping someone can help me I hope this will make sense I have a form that calculate the price of a job ( using a query to retrieve and calculate the data ) This form is used in two main forms ( as a subform ). The fields that need to be passed to the query are the same on each of the...
  4. W

    sub form help

    Hi Hoping someone can help me I am trying to have 2 main forms and 1 sub-form were the sub- form show the same information but is based on a query with criteria from the main form. Rather then having to create 2 query's and 2 sub forms is there a way of telling the query to pull the criteria...
  5. W

    Query by form

    Hope someone can help I've done a query by form ie the user can select their own criteia via drop downs. What I need to do is, if there is more then one crtieria , the second drop down needs to only show data from results of the first criteria at the minute the query is run when the user...
  6. W

    Antoher type mismatch error

    worked thank you very much
  7. W

    Antoher type mismatch error

    tried it still get a type mismatch error this may be due to my ignorance now so apologies if the code i copy below is "silly" tried a number if different combinations. MsgBox (" & Me.txt_h_no & " And " & Me.txt_pc & " And " & Me.txt_p_ref & ")
  8. W

    Antoher type mismatch error

    RuralGuy thanks for the reply but, I fairly new to vba so can you explain in a bit more detail please
  9. W

    Antoher type mismatch error

    HI Confused below is some code I'm using to filter a report on opening. Private Sub cmd_specfic_Click() DoCmd.OpenReport "rpt_specfic_panel_time_detail", acViewReport, , _ "[house number]='" & Me.txt_h_no & "'" And _ "[project code]= '" & Me.txt_pc & "' " And _ "[panel ref]='" & Me.txt_p_ref...
  10. W

    Type Mismatch Error

    Thanks fro the help worrked a treat
  11. W

    Type Mismatch Error

    Please help no matter what I do I get a type mismatch error 13 with the code below. If I try them seperatly they work If I feed the filter directly into the report it works but as soon as i use the code below I get the error The house number is a text field and the run date as the title...
  12. W

    Filter Problem

    thanks for the help I did read the inforamtion in the link you posted but didn't pick up the format issue my bag thanks again
  13. W

    Filter Problem

    found the answer to the side question it's microsoft being ever helpfull when using VB if someone can show me how to send the information to VB in us format I'll be gratefull
  14. W

    Filter Problem

    thanks fro the help can you expand a little please Below is the code I use to send the date to the report, how do I then tell it to change the fromat to us DoCmd.OpenReport "rpt1_detail", acViewPreview, , "[run date]= #" & Me.txt_report_date & "#" thanks again as a side question why is...
  15. W

    Filter Problem

    Please help I want my DB so that 1 report can be filtered easily by any user with as little interaction as possible so I have a form that has combo box's linked to differant fields the idea being that an operator can select for exmple a project code and on the press of a button the report is...
Back
Top Bottom