Is it possible to change the contents of continuous form using a field value on a particular record without it altering the whole list of forms?
I currently show records in continuous forms like this:
Name Policy(LTA) Sum Term
-----------------------------------------
Name Policy(LTA) Sum Term
-----------------------------------------
Name Policy(LTA) Sum Term
-----------------------------------------
I want to show the continuous forms like this when the Policy field has a different value:
Name Policy(LTA) Sum Term
-----------------------------------------
Name Policy(PHI) ToAge RPI
-----------------------------------------
Name Policy(LTA) Sum Term
-----------------------------------------
I am currently using a conditional expression:
If Me![Policy]="PHI" Then Me![Sum].Visible=No
If Me![Policy]="PHI" Then Me![ToAge].Visible=Yes
If Me![Policy]="PHI" Then Me![RPI].Visible=Yes
This seems to apply the function to all records in the continous forms and not just the forms where Policy ="PHI" :
Name Policy(LTA) ToAge RPI
-----------------------------------------
Name Policy(PHI) ToAge RPI
-----------------------------------------
Name Policy(LTA) ToAge RPI
-----------------------------------------
How do I apply changes to the forms containing the PHI value without changing all the records in the continuous form?
I currently show records in continuous forms like this:
Name Policy(LTA) Sum Term
-----------------------------------------
Name Policy(LTA) Sum Term
-----------------------------------------
Name Policy(LTA) Sum Term
-----------------------------------------
I want to show the continuous forms like this when the Policy field has a different value:
Name Policy(LTA) Sum Term
-----------------------------------------
Name Policy(PHI) ToAge RPI
-----------------------------------------
Name Policy(LTA) Sum Term
-----------------------------------------
I am currently using a conditional expression:
If Me![Policy]="PHI" Then Me![Sum].Visible=No
If Me![Policy]="PHI" Then Me![ToAge].Visible=Yes
If Me![Policy]="PHI" Then Me![RPI].Visible=Yes
This seems to apply the function to all records in the continous forms and not just the forms where Policy ="PHI" :
Name Policy(LTA) ToAge RPI
-----------------------------------------
Name Policy(PHI) ToAge RPI
-----------------------------------------
Name Policy(LTA) ToAge RPI
-----------------------------------------
How do I apply changes to the forms containing the PHI value without changing all the records in the continuous form?