Search results

  1. T

    Auto Rotate Photos

    Good morning, Following up on a question previously posted (and solved) in the Tables forum on how to import a file path batch, I have encountered a problem. Using the VBA code provided by @Pat Hartman and @theDBguy, I was able to import all file paths for photos from a Windows Explorer...
  2. T

    Solved Import Filepath Batch

    Hello. Is there a way to import several filepaths into an access table? I'll give you more context to this question. Every week I receive several progress photos from project managers on a construction site for inclusion as an appendix to a weekly report. Right now, I save the photos to a...
  3. T

    Solved Continuous Sub-Form

    Good afternoon and Happy New Year! I am working on a hotel project and created a continuous form listing all the tasks that need to be completed for the guestrooms with a Yes/No field. Each room will have the same tasks. I would like this form to be a subform where the main form will have...
  4. T

    Cannot Sum a Calculated Control in the Report Footer

    Good Afternoon, I am trying to sum a calculated control in a report footer but not having any luck. This is a quarterly report that calculates the insurance payable per month within the quarter based on a set percentage per invoice. Note, the insurance payable is not calculated per invoice but...
  5. T

    Relational Combo Boxes not Working

    Good Morning, I would really appreciate assistance as I have been trying for over 2 weeks to get the relational combo boxes to work. I am trying to set up a Material Requisition DB. In the details section of the subform I tried to create a category combo box, which when a selection is made...
  6. T

    Filter Button Not Working

    Hello, I have a database that I have been using for the past 2 years which from this week has started giving some trouble. In the main form there are different categories which before I would use the filter button on the ribbon to narrow searches within a category. However, from this week...
  7. T

    MaxOfDate Not Returning the Expected Results

    Hi, I am creating a drawing register database for a construction project and would like to see the latest revisions for each drawing. Right now I have a drawing with two revisions - revision C1 was issued March 3rd and revision C2 issued March 28th. In my query I changed the group by to Max...
  8. T

    Show Previous Year's Totals as Balance Brought Forward on Current Year's Report

    Hello, I have a report that is based on a crosstab query which shows the deliveries of water tanks by year and month. The row headings are year and month, column headings are the different size water tanks and the value is the qty received. For this new year, I would like the 2022 deliveries...
  9. T

    Formula for Group Footer

    Hello I have a report showing the dates various activities on a project occurred. We are installing water tanks so I have a date field named TankDate which is the date the tank (or tanks) are installed at a particular property. I also added a field named TotalTanks with the following formula...
  10. T

    Database working intermittently

    I am experiencing some issues with my database and I'm not sure if it's the database or the Access program. One day a combo box or button will work and the next day they won't. Today I updated some customer information and when I went to print the report a field that previously had information...
  11. T

    Conditional Formatting for Blank Date Field Not Working

    Hi, I have a report which is based on a query that includes the following expression named "PreInstallationInspectionDate" (I know it's a long name) DLookUp("[PreInspectionDate]","tblWorkOrder","CandidateID=" & [CandidateID]) In the report, I would like the PreInstallationInspectionDate field...
  12. T

    Solved Showing values from a multiple selection combo box

    Hi, I have created a form which includes a multi-selection combo box. Is it possible to show each selection on a different line in the field of the report as opposed to separated by a comma?
  13. T

    Name and Print Report to PDF

    Hello, I need help with the below code. I am trying to name and save to PDF my Invoices without having to manually name them. The problem with the code is that it is saving ALL the invoices as one document when only need the current record/invoice saved. Here is the code: Dim FileName As...
  14. T

    Solved Show next working day

    Hello. I am creating an equipment maintenance schedule. I would input the date the equipment was last serviced and then input the suggested maintenance period in months e.g. 3, 6 or 12 months. I have added a simple formula that returns the next service date based on the maintenance period...
  15. T

    Dsum with Dates

    Good morning, I am trying to sum the amount after December 31, 2019 and a date selected on a form. I am not getting an error message, the result is just blank. =DSum("[Amount]","qryStatement2","[TransactionDate] > #31-12-19# and [TransactionDate]<#" & [txtLastStatement] & "# AND...
  16. T

    On Current Error Message

    Good Morning, I changed an existing form to a tabbed form so I could add a second subform. This is causing an error when I first open the form which says "The expression On Current you entered as the event property setting produced the following error: Return without GoSub". The only On...
  17. T

    Solved Dmax Sequential Numbering Start Value

    Good morning, I am using Dmax to create a unique sequential numbering in a form. I would like the first entry to start at 1, however it keeps starting at 0. I tried changing the default value in the table design to 1, but it keeps going back to zero. I put the below code in the forms Before...
  18. T

    Solved Calculation Error in Query

    Good Morning, I have a query that calculates the insurance on the sum of an invoice. I have two invoices - the first one consisted of 3 items totalling $75.00 (30+30+15); the second one was 1 item totalling $75.00. The insurance is 17.1%. For the first invoice the calculation returned a...
  19. T

    Open List Items Edit Form to a Specific Record

    Hello, I have a client task sheet form with a combo box cboJobName that lists all the jobs for that specific client. I have the List Items Edit Form property set to frmClients (which includes the subform frmJobs). How can I open the frmClients to the Client whose task sheet I am working in...
  20. T

    #Error and #Type! in blank records

    Hello, I have two slightly annoying issues. I have a DLookup formula on my data sheet subform that is working, however, in the next blank record, that field has an #Error message which is a little irritating to see. But when I key in data the #Error goes away. Below is the formula...
Back
Top Bottom