Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am looking for a way to show a textbox or image when value A in field FakeField is selectable.
on my search for an answer i found the getcurrentselections function but that only works if value A is selected.
I want to show the image while value A is still within the current selection.
I think you could use as condition something like this:
if(count({< FakeField = {'value A'}>} distinct FakeField) = 1, true(), false())
- Marcus
I think you could use as condition something like this:
if(count({< FakeField = {'value A'}>} distinct FakeField) = 1, true(), false())
- Marcus
Thanks for your answer,
When you use Set Analysis like this it will force the selection to be 'value A' and count will be 1 and the result will be True
but i could copy the field to FakeCopy and hide it from the design, this way i can select in FakeField and the Set Analysis will work like expected!
Thanks marcus_sommer