Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello, I´m trying to create a condition for a chart that only want to display when two values in the field "FieldOne" are selected, and those two values should be "BG" and "VG".
I´ve tried this, bud it doesn´t work
MinString(FieldOne='BG')
AND
MaxString(FieldOne='VG')
Hi
Try something like this
=GetFieldSelections(FieldOne,',') = 'BG,VG'
=(MinString(FieldOne)='BG' AND MaxString(FieldOne)='VG')
- Ralf
Hi
Try something like this
=GetFieldSelections(FieldOne,',') = 'BG,VG'
try this in condition
count(Distinct wildmatch(FieldOne,'BG') and wildmatch(FieldOne,'VG'))=1