Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I am trying to create an IF statement where a GetFieldSelections [YearSmall] includes '14/15' .
This seems straight forward when the GetFieldSelections is equal to '14/15' as below
=IF(GetFieldSelections(YearSmall) = '14/15' or GetFieldSelections(Year) = '2014',30) but this does not then work if multiple selections are made on [YearSmall]
Many thanks
If(index(GetFieldSelections(YearSmall), '14/15')) > 0
=IF(SubStringCount(Concat(Distinct GetFieldSelections(YearSmall),'|'),'14/15') or SubStringCount(Concat(Distinct GetFieldSelections(Year),'|'),'2014'),30,'')
=IF(GetFieldSelections(YearSmall) = '14/15' and GetFieldSelections(Year) = '2014',30)