In closest thing is skipping and printing sections. This is achieved by creating a Control script in the Scripts panel. To insert a Control script click the New icon on the toolbar of the Scripts panel and choose Control script. Controls scripts run before the merge process and let you control various aspects of the document. Consider the following code:
// Simple approach to initially disable output for the Print sections
merge.template.contexts.PRINT.sections['Section 1'].enabled = false;
merge.template.contexts.PRINT.sections['Section 2'].enabled = false;
// Enable a print section based on the value of a data field
if(record.fields['Field1'] == 'goldmember') {
merge.template.contexts.PRINT.sections['Section 1'].enabled = true;
} else {
merge.template.contexts.PRINT.sections['Section 2'].enabled = true;
}
This script initially disables the two sections in my template and subsequently enables one of them based on a data field. Currently this can via scripting only, an user interface will be added in a future version.
Erik
PS. In many traditional PSM templates the skip/print layout option was used to toggle the background. In Connect this often translates to toggling an image on the master page (for example PDF dragged from the resources to Master Page editor) or use scripted media.