Getting the error: “We encountered an error trying to save your calculated field. Please try creating it again.”
I have tried refreshing and copy and paste
This is the formula am trying to save (ifelse(in(${CombinedVol} = ‘True’),{Combined},{# mass})
Hi,
your in() function is not correct I think.
Can you describe what condition has to be met?
At the moment I would understand, that you want to check, if the parameter CombinedVol equals “True”.
yes that is the condition am checking
If CombinedVol is a multi select parameter, then you are correct to use the in-function
please try this:
ifelse(in(‘True’,${CombinedVol}),{Combined},{# mass}
this checks, if the string ‘True’ is selected in the parameter CombinedVol and then takes the field Combined, else it takes the field # mass
1 Like