I have a Master Table with MasterID & Status among other fields. If the Status=FollowUp , then I need to follow up on that record. I created a FollowUp Table and inserted all records with a Status=FollowUp from the Master Table into the FollowUp Table. I did this by creating an Append Query which did work.
Once all the FollowUp records are in the FollowUp Table, I can write a query to identify the FollowUp records if there is only one follow up. However, if a MasterID (Client) has multiple follow ups in the FollowUp Table, I don't know how to identify them.
At the end of the day, I need to identify all Follow Up records, and there may be multiple follow ups. But once a MasterID (Client) has a status not equal to FollowUp, then I do not want to pull those records. All I want in my FollowUp Form are Clients that still has a Status=FollowUp . So the FollowUp Table may have record #1with a Status=FollowUp , record #2 with a Status=FollowUp , but record #3 with a Status=Declined . Once the Status is not FollowUp, I don't want that Client to show up in my FollowUp Form. I hope this makes sense. I appreciate any insight.
Thanks,
Mike
Once all the FollowUp records are in the FollowUp Table, I can write a query to identify the FollowUp records if there is only one follow up. However, if a MasterID (Client) has multiple follow ups in the FollowUp Table, I don't know how to identify them.
At the end of the day, I need to identify all Follow Up records, and there may be multiple follow ups. But once a MasterID (Client) has a status not equal to FollowUp, then I do not want to pull those records. All I want in my FollowUp Form are Clients that still has a Status=FollowUp . So the FollowUp Table may have record #1with a Status=FollowUp , record #2 with a Status=FollowUp , but record #3 with a Status=Declined . Once the Status is not FollowUp, I don't want that Client to show up in my FollowUp Form. I hope this makes sense. I appreciate any insight.
Thanks,
Mike
Comment