Positive Test Flagging & Reminders

yrstrulysa

New member
Local time
Today, 04:20
Joined
Feb 20, 2025
Messages
6
I am developing a Microsoft Access-based system to manage virus/bacterial retesting for plant blocks. The system tracks testing schedules, flags positive tests, and automates retest reminders using VBA and a subform to display test records.

 
Please see:
 

Attachments

  • popup.PNG
    popup.PNG
    26 KB · Views: 14
Ok? How can we help you?
 
I am developing a Microsoft Access-based system to manage virus and bacterial retesting for plant blocks. The system tracks testing schedules, flags positive tests, and automates retest reminders using VBA and a subform to display test records.

Files (Upload function does not work): [Insert Google Drive link here]

What I Have Done So Far

  1. Created a Table for Retesting (TblBlockRetesting).
  2. Subform: QfrmBlockPath_subform - Link & Functionality
    • This subform is embedded in the Blocks Administration Form (frmBlocks Admin).
    • It is linked to the main form using:
      • Master Field: Nr
      • Child Field: Nr, Block
Testing Reminder - How It Works

  • Checks if a block has tested positive (TestResult = "A/EC").
  • Looks at the TestDate column to determine if the test was conducted 5+ years ago.
  • Inserts overdue tests into TblBlockRetesting if they are not already recorded.
  • Triggers a pop-up reminder listing overdue blocks.
I tried using a VBA script, but it is currently calling a previous macro, and I do not know how to remove it.

Please provide the VBA code you are using so I can help you fix the issue with the macro call.
 
We are now up to 3 posts where you give us a synopsis of your project and I think I finally see a sentence hidden in there that has to do with an issue (but no specific question though):

I tried using a VBA script, but it is currently calling a previous macro, and I do not know how to remove it.

The most common way to call a macro from VBA is via the DoCmd.RunMacro method:


So, my suggestion is to search (Ctrl + f) your VBA for either the name of the macro that is no longer in use or 'DoCmd.RunMacro'.
 
cross posted here:
 

Users who are viewing this thread

Back
Top Bottom