I am creating a database to house patient information and there is a need for an insurance review screen where multiple people can add comments. The problem is I want each individual occurrence to be its own.
For instance:
02-28-2012 ABC Called insurance company
02-28-2012 XYZ Faxed clinical to insurance company
The only way I know how to do this would be to create a table with multiple fields of the same origin, meaning like this:
Date1
Initials1
Comments1
Date2
Initials2
Comments2
Date3
Initials3
Comments3
The problem is that I end up with a table 500 feet long and sometimes I only use one date, initial and comment "Block" while on others I may use 20-30.
So I guess my question is this:
How do I create multiple instances of basically the same fields without having a data table that is 500 feet long and is there a way to have the "Block" auto populate only when the inital "block" has been entered?
So for instance,
Date2
Initials2
Comments2
ONLY populates if
Date1
Initials1
Comments1
is filled in and
Date3
Initials3
Comments3
ONLY populates if
Date2
Initials2
Comments2
is filled in.
Does this make sense?
For instance:
02-28-2012 ABC Called insurance company
02-28-2012 XYZ Faxed clinical to insurance company
The only way I know how to do this would be to create a table with multiple fields of the same origin, meaning like this:
Date1
Initials1
Comments1
Date2
Initials2
Comments2
Date3
Initials3
Comments3
The problem is that I end up with a table 500 feet long and sometimes I only use one date, initial and comment "Block" while on others I may use 20-30.
So I guess my question is this:
How do I create multiple instances of basically the same fields without having a data table that is 500 feet long and is there a way to have the "Block" auto populate only when the inital "block" has been entered?
So for instance,
Date2
Initials2
Comments2
ONLY populates if
Date1
Initials1
Comments1
is filled in and
Date3
Initials3
Comments3
ONLY populates if
Date2
Initials2
Comments2
is filled in.
Does this make sense?