Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am trying to see if a code is in a series of codes.
If 112 is in 112&113&162&183 set Y else N. I need to display this in chart
thanks
Have a look at the Index() function e.g.
=if(Index('112&113&162&183', 112)>0,'Y','N')
If(SubstringCount( '112&113&162&18', '112'), 'Y', 'N')
For this you could use index() or wildmatch() or maybe a substringcount().
- Marcus
Have a look at the Index() function e.g.
=if(Index('112&113&162&183', 112)>0,'Y','N')
thanks. this worked as I needed