I have a database to record patients treatment regimens.
So, each patient has a Medical record number[MEDRECNO] in tblOncReg, which can have multiple treatment regimens[RegID] in tblRegimen. Each treatment regimen can have multiple cycles[CycleID] in tblCycle. Each cycle has multiple drugs[CycleMedID] associated with it.
This seems like it'll be pretty complicated to do, but the way I want it to look is:
Regimen 1
Cycle 1
Drug1
Drug2
.....
Cycle 2
Drug 1
Drug 2
.....
Cycle X
.....
Regimen 2
Cycle 1
Drug 1
Drug 2
.....
The number of regimens and cycles will vary, so it'll need to look at the first regimen associated with the [MEDRECNO], display the first cycle with all it's associated drugs, then drop to the next cycle and do the same thing till it reaches the last cycle for that regimen. Then at the end of that regimen, it should go to the next regimen associated with that same [MEDRECNO] and do the same series. I have no idea how to do this in a report, or if it's even possible.
Any ideas?
So, each patient has a Medical record number[MEDRECNO] in tblOncReg, which can have multiple treatment regimens[RegID] in tblRegimen. Each treatment regimen can have multiple cycles[CycleID] in tblCycle. Each cycle has multiple drugs[CycleMedID] associated with it.
This seems like it'll be pretty complicated to do, but the way I want it to look is:
Regimen 1
Cycle 1
Drug1
Drug2
.....
Cycle 2
Drug 1
Drug 2
.....
Cycle X
.....
Regimen 2
Cycle 1
Drug 1
Drug 2
.....
The number of regimens and cycles will vary, so it'll need to look at the first regimen associated with the [MEDRECNO], display the first cycle with all it's associated drugs, then drop to the next cycle and do the same thing till it reaches the last cycle for that regimen. Then at the end of that regimen, it should go to the next regimen associated with that same [MEDRECNO] and do the same series. I have no idea how to do this in a report, or if it's even possible.
Any ideas?