Hello,
I am creating custom group for the description of frozen soils and ice. Within this group I have created several custom headers, for example; Group Symbol, Subgroup Symbol, Ice Structure, Ice Color, etc. See screen shot.
I am now trying to create a calculated field using these custom headers or parameters. Similar to the calculated StratumDetails - Description that comes with the US Standard configuration pack.
But whenever I try to build an expression with my custom headers I get an error, "Parameter not defined". See example of code below.
concatenatewith( '; ', concatenatewith(' to ',[FrozenSoilandIce.IcePercentageMin],[FrozenSoilandIce.IcePercentageMax]), [FrozenSoilandIce.GroupSymbol], [FrozenSoilandIce.SubgroupSymbol], [FrozenSoilandIce.IceHardness], [FrozenSoilandIce.IceColor], [FrozenSoilandIce.IceStructure], [FrozenSoilandIce.AdditionalDescription], )
Any suggestions is greatly appreciated.
Hi Maria,
Thanks for the details. Can you try the expression version below, it has a comma removed from the end.
concatenatewith( '; ', concatenatewith(' to ',[FrozenSoilandIce.IcePercentageMin],[FrozenSoilandIce.IcePercentageMax]), [FrozenSoilandIce.GroupSymbol], [FrozenSoilandIce.SubgroupSymbol], [FrozenSoilandIce.IceHardness], [FrozenSoilandIce.IceColor], [FrozenSoilandIce.IceStructure], [FrozenSoilandIce.AdditionalDescription] )
Martyn
Hi Martyn,
I'm sorry! I thought the correction you offered worked, but it appears that, that is not the issue.
I even tried entering a simple formula for example:
[FrozenSoilandIce.IceColor]
And I still get the error parameter not recognized. Is there something I need to be setting/checking in the custom headers?
Thanks again.
Maria
Ah. Okay. I figured it out.
I was not typing the header names correctly.
See screenshot below.
I corrected all the header names to include spaces (i.e. what the actual name is) and now the expression works just fine.
Thank you!