Previous Topic

Next Topic

Book Contents

Example of a rule for a dynamic visit

In this example, the patient’s gender determines whether the patient is scheduled for the Dose100 or the Dose250 visit, both of which start 720 hours after the patient’s first visit.

MALE=1
FEMALE=2

Gender = Patient.GetValueRF(“0.Visit1.DEM.DEM.0.GENDER”,””,0,0,0)

If Gender = MALE Then
DVisit=”Dose100”
Else
DVisit=”Dose250
End If

Patient.SetDynamicVisitStart DVisit, “”, 720

Send Feedback