Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I'm trying to have a text box that shows the description of a specified code
I want to write something along the lines of
=[PI Description] where [PI Code] = 'GK300'
This will always show the Description of the Code GK300.
What I dont want to do (but it works) is
=If([PI Code]='GK300', [PI Description])
as this will only show the description if GK300 is selected.
I hope this makes sense. Any ideas?
only({$<[PI Code]={'GK300'}>}[PI Description])
only({$<[PI Code]={'GK300'}>}[PI Description])
Thanks, I've not come across the "only" function before. I'll read up on it.