I have a ‘meetings’ prototype that contains a boolean called $Actions
‘meetings’ has the following onAdd action that isn’t working as intended ( If $Actions in meetings is true I want any children created to be of tasks prototype and if false to be of agenda item prototype
if($Actions==true){$Prototype="Task"}else{$Prototype="AgendaItem"};
I’ve tried combos of If($Actions){…} and if(!$Actions){…} etc but to no avail - The boolean state test seems to be ignored - not crucial but I thought it was going to be a fairly easy test