April 2, 20196 yr I want "Continuity Header Calc" to take "Group_Header" if it exists. If it does not, take Scenes:Scene Header I tried making the calculation with this: If ( IsEmpty ( Group_Header ) ; Scenes::Scene Header {; Group_Header} ) But it gives me the error: "The specified field cannot be found" I think I'm missing something... Thanks in advance!
April 2, 20196 yr 10 minutes ago, Bryan said: If ( IsEmpty ( Group_Header ) ; Scenes::Scene Header {; Group_Header} ) Try removing the curly brackets (which denote an optional argument): If ( IsEmpty ( Group_Header ) ; Scenes::Scene Header ; Group_Header )
Create an account or sign in to comment