Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi everyone.At first, im trying to use a if almost like this...If( MODULO = 'IMPO',
PORTO_X,
IF(
MODULO='EXPO',
PORTO_Y,
iF( MODULO = '("IMPO"|"EXPO")'
PORTO_X
)))
sOMETHING LIKE THIS.Ç.. BUT WHEN I FILTER THEY 2 (EXPO AND IMPO) it doenst do it right...
try something like this:
If(Modulo='IMPO' ,'PORTO_X' ,IF(Modulo='EXPO' ,'PORTO_Y' ,If(GetFieldSelections(Modulo,'|') = 'EXPO|IMPO' ,'PORTO_X')))