Search results

  1. S

    Form button to create a report on record

    Here is my db file is too big
  2. S

    Form button to create a report on record

    Still not working I have tried all the suggestions and it still isnt working. What do you mean by trying debug.print stlinkcriteria ?? I am new to all of this. Many thanks for your help.
  3. S

    Form button to create a report on record

    changed it to what you said and it came back with an error message saying that there was a datatype mismatch
  4. S

    Form button to create a report on record

    Thanks again for the post. Here is the code I have written: Private Sub Command172_Click() On Error GoTo Err_Command172_Click Dim stDocName As String Dim stLinkCriteria stDocName = "TEST" stLinkCriteria = "[SFI Reference]=" & Me.Text58 DoCmd.OpenReport stDocName...
  5. S

    Form button to create a report on record

    Thanks for the reply. I have read the other topics but none of them seem tailored to what I need, and the ones that are similar fail to work. Sorry to ask a question that is frequently on this board, but I need an answer.
  6. S

    Form button to create a report on record

    I have a form and wish to create a button that will print a report based on this form reference. How do I do this?
  7. S

    Report On Multiple Queries

    Let Me Expand This is what I am trying to do: I have created various forms based on various queries to count the amount of records in each query. So effectively I have forms with a text box that simply displays a numeric value for the amount of records in the query it is linked to. With...
  8. S

    Report On Multiple Queries

    That won't work The queries I have are linked to forms that create totals. Then it is these multiple forms that need to be represented in a report.
  9. S

    Report On Multiple Queries

    I want to create a report based on values in multiple forms. How do i do this?
  10. S

    Count of records that have been filtered in a query

    WORKS IT WORKS!!! I re-created the query and form and now it works. Thanks very much everyone.
  11. S

    Count of records that have been filtered in a query

    Didn't work Thanks for the reply. I tried what you suggested but it didnt work: "=Count(*)". Any other suggestions?
  12. S

    Count of records that have been filtered in a query

    I have created a query based on my form to show only my records that are in a "monitoring" state. How can I get a total displayed for the number of records it shows? I have a form based on this query and ultimately I want the total displayed in a report I have already created. Any help would be...
  13. S

    Validation Rule

    I require my database to identify when the same data in 3 fields has been entered 5 times, ie when field a field b and field c have the same information in them as entered in an older record it will count them and display that value for viewing.
  14. S

    Control Data entry

    Much obliged it worked a treat
  15. S

    Validation Rule?

    I require my database to identify when the same data in 3 fields has been entered 5 times, ie when field a field b and field c have the same information in them as entered in an older record it will count them and display that value for viewing.
  16. S

    Control Data entry

    How can I control my form so that the data entered into a field cannot begin with a number 0?
  17. S

    Sending a message to all users

    problem The problem with that is that unless everyone logged in to the database is using that particular form they will not see the message. There are many forms in my database so it needs to be a broadcast type message.
  18. S

    Sending a message to all users

    Does anyone know how i can send a message to all people logged on to the database. The database is currently hosted on a network drive and all users access it from there with a standard password for everyone to gain access to it. Cheers all.
  19. S

    Copying data

    I have a form and I want to be able to click a command button that will paste the information to another form. How can i do this? I have yet to create the form which requires the text to be pasted into.
  20. S

    linking to a record

    I have a form based on a query that shows records stored in it. I want to make a link on the form so that when the link is clicked it takes you to the specific record in the original form. I have managed to do this on other forms by creating a command button that opens the required form, but...
Back
Top Bottom