Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am trying to filter results in a chart to count the number of items that DO NOT end with the character 'S'.
The expression I am using is: =IF(right(LineItemNumber,1) <>'S', TextCount(distinct LineItemNumber))
The results count all items.
What is wrong with the syntax?
Thank you.
May be try this:
TextCount(DISTINCT {<LineItemNumber -= {'*S'}>} LineItemNumber)
or
TextCount(DISTINCT If(WildMatch(LineItemNumber,'*S'), LineItemNumber))
May be try this:
TextCount(DISTINCT {<LineItemNumber -= {'*S'}>} LineItemNumber)
or
TextCount(DISTINCT If(WildMatch(LineItemNumber,'*S'), LineItemNumber))
Thank you. That worked!