Search results

  1. W

    Populate PDF Forms from Access and vice versa (import values from Forms into Access)

    i have now managed to populate the PDF forms with data from the access database (so the "Write" part is OK). Now I just need to figure a way to to the "reading part".
  2. W

    Populate PDF Forms from Access and vice versa (import values from Forms into Access)

    Hi Everyone, I found the following code very useful to populate PDF Forms from an excel spreadsheets, and the other way around, to populate the Excel spreadsheet with data from the PDF Forms: https://www.myengineeringworld.net/2013/10/read-and-write-pdf-forms-from-excel-vba.html However...
  3. W

    Filter on Report

    Because I want to see a report, not a form.
  4. W

    Filter on Report

    Hi, I have a report which I want to sort based on the values in textboxes and comboboxes. The code below does the job, but only for 1 textbox/combobox at a time... I want to apply the filter based on several boxes simultaneously... Could you guys help me? :) Private Function ApplyFilter() As...
  5. W

    URGENT: How to add images from DB into reports?

    I did see that video. However, as I said, the image should be stored inside the database, not as a hyperlink. :(
  6. W

    URGENT: How to add images from DB into reports?

    Hi, I have built a report consisting of tasks. Each task gets an "ITP" code. If the report code is "B" for example, I want to show an icon for "Budget" If the report code is P, I want to show an icon for "Plan" If the report code is A, I want to show an icon for "Approve" (See image above, I...
  7. W

    Filter not Working on Report

    Thanks a gazillion!
  8. W

    Filter not Working on Report

    OMG, now I feel stupid... :( That was the reason why... I now added an existing field ("Full Name") to the report and it works!
  9. W

    Filter not Working on Report

    For the new collumn, I tried the following code: SELECT DISTINCT [FullName] FROM Employees ORDER BY [FullName];
  10. W

    Filter not Working on Report

    The field "Full Name" is a calculated field, using [First Name] & " " & [Last Name] I also added a new collumn to the table "Employees" called FullName. I added FullNames manually, and tried with that field. Still doesn't work...
  11. W

    Filter not Working on Report

    See attached file :)
  12. W

    Filter not Working on Report

    OMG that did it! GREAT! Now just one issue left, and that is the "Full Name" This one still shows a pop up. Could that be due to: 1. A space between "Full" and "Name"? 2. the fact that this is a calculated field?
  13. W

    Filter not Working on Report

    Please have a look at the 2 files attached. The table "Projects" contains the field "Project Name" which I used in the row Source. The Table "Tasks" contains the fields "Title" and "Status", which I also used in the Row Source. So if Status works, why doesn't title work? :(
  14. W

    Filter not Working on Report

    Here's a screenshot.
  15. W

    Filter not Working on Report

    When I enter the code like I did above, nothing happens
  16. W

    Filter not Working on Report

    Like this? Private Sub Filter_Click() Dim strSQL As String, intCounter As Integer ' Build SQL String. For intCounter = 1 To 5 If Me("Filter" & intCounter) <> "" Then strSQL = strSQL & "[" & Me("Filter" & intCounter).Tag & "] " _ & " = " & Chr(34) & Me("Filter"...
  17. W

    Filter not Working on Report

    Row Source: Project: SELECT DISTINCT [Project Name] FROM Projects ORDER BY [Project Name]; Task: SELECT DISTINCT [Title] FROM Tasks ORDER BY [Title]; Status: SELECT DISTINCT [Status] FROM Tasks ORDER BY [Status]; Assigned To: SELECT DISTINCT [Full Name] FROM Employees ORDER BY [Full...
  18. W

    Filter not Working on Report

    It appears the attachements were included in the post after all :-)
  19. W

    Filter not Working on Report

    Hi all, I am quite new to Access and have been working with a sample DB from Microsoft. I have been looking for some ways to filter a report based on the values in some comboboxes, and have followed the instructions on a website (can't post link yet) I also looked at this file (**can't post...
  20. W

    Hello

    Same here! Greetings from Norway!
Back
Top Bottom