Is there any way to add a conditional expression to an Campaign Classic data schema? For example: <attribute expr="[operation/@end]" label="Max Date" name="maxDate" type="date"/>
To check if Operation/@end is later than today's date, and depending on it, set one value or another
<attribute expr="Iif([operation/@end] < GetDate(),'Campaign End date has crossed' ,'' )" label="Campaign end date check" name="campaignEndDateCheck" type="string"/>
<attribute expr="Iif([operation/@end] < GetDate(),'Campaign End date has crossed' ,'' )" label="Campaign end date check" name="campaignEndDateCheck" type="string"/>