I can't figure out how to set the values in a multi-enum using a formula. Nothing I've tried works. The entity saves without any errors, but the multi-enum doesn't have anything selected.
	I've tried 
	 and all kinds of other things, but nothing works. I want to add multiple values, e.g. 
	 What do I need to do to accomplish that? Thanks.
							
						
					Code:
	ifThen(
    entity\isNew(),
    ifThen(
        type == 'Z',
        timesheettasks = 'CAD'
    )
);
Code:
	timesheettasks = ['CAD']
Code:
	['CAD','Photos']

Comment