Loads products that has active status

Hi all,

The product page loads all products, but I need that the page only loads the products that has status as 1 (active), not load products that has status in 2 and 3 (In progres and desactive).

I tried the following formula in slices (in the Data section).

IN([codigoEstado],{1})

The page still loading products with all status.

Any one knows how it works.

1 Like

If [codigoestado] is a NUMBER or ENUM type column then use

[codigoestado]=1

Otherwise if its an ENUMLIST or LIST type column then use

IN(1,[codigoestado])

Simon@1minManager.com

1 Like