Recent content by Archie1

  1. A

    Update Query for multiple scanarios

    Thanks for the suggestions. I will have a re-think
  2. A

    Update Query for multiple scanarios

    Hi I have a form (helped by you guys) which has the fields Risk Probability(RP) and Risk Impact (RI)(both are from TblRisks ) - My next field is Risk Evaluation (RE) I have an update query which updates RE depending the results of both RP & RI Eg If "likely" is selected from RP and "Moderate" is...
  3. A

    Autofill a field based on the selection of 2 other fields

    Hi -Just to test this out I made a "test " table and "test"update query The SQL is UPDATE TEST SET TEST.RE = "low" WHERE (((TEST.RP)="l") AND ((TEST.RI)="neg")) OR (((TEST.RP)="UL") AND ((TEST.RI)="MIN")); This works for the above outcomes so can I now add to this for outcomes that would...
  4. A

    Autofill a field based on the selection of 2 other fields

    I will have a go at that thank you
  5. A

    Autofill a field based on the selection of 2 other fields

    Hi -Is this possible please? I have a form FrmRisklevel It has fields Risk Probability and Risk Impact (both are from TblRisks and the fields are look ups from other tables) - My next field is Risk Evaluation My preference is Risk Evaluation will autopopulate based on the selection of the...
  6. A

    Query to extract selected yes fields from table

    Thanks for your reply. Sorry, I do have 2 tables. TblContractor containing Contractor name and ID. TblRisks containing the yes/no fields
  7. A

    Query to extract selected yes fields from table

    I have a "Risk Assessment" table with Contractor information and then a few yes/no fields. One or multiple fields could be = yes which would change with each risk assessment I would like a report to show the Contractor Info fields and then only the fields = yes and omit fields = no. Presuming...
  8. A

    Union Query with parameter for results by month

    Hi Again How would I go about adding a date parameter to my union query? My required end result is a report that would prompt me for the month ie "June"
  9. A

    Query to show review dates from multi tables

    Ahh ok I will have a re-think then
  10. A

    Query to show review dates from multi tables

    H I have the following tables:- Employees, Supervisors, Line Managers, Dept Managers. The tables store Appraisal information amongst other things. I want a query to extract Appraisal review dates from all the tables so I can then print it in a report to easily see who is due a review. I have...
  11. A

    Open report from form with combo selection

    I decided to start again and re-do the forms. I designed a blank form with a combobox to select the employee. I then dragged the subform and linked by leader ID. For some reason it worked. I can now select the employee from the combobox which autofills the form. I then click my new command...
  12. A

    Open report from form with combo selection

    Thanks for the advice! I am very new to Access and appreciate the help from you guys. I will have a go at that
  13. A

    Open report from form with combo selection

    Many thanks for your help. Its still not working. Error message "Compile Error -Expected:End of statement. The word "Reporting" is hilighted in that error. Ive checked the names of everything and its all correct. My method (form) is as follows - I created a form with a combobox to select from a...
  14. A

    Open report from form with combo selection

    Have just tried your code as follows but getting this error "Compile Error expected end of statement" and the word "reporting" from my subform name is hilighted? Private Sub Command20_Click() DoCmd.OpenReport "RptIDBE", acViewPreview, , "Leader ID =" & ME.Accident Reporting...
  15. A

    Open report from form with combo selection

    Thanks for your help. I have googled but cant find a lot. My combobox selection is called "leader ID" and not Employee ID as I originally quoted and My report is called RptIDBE. One post on google said I needed to have the name of the combobox in there? With the following (copied and pasted) its...
Top Bottom