How to run multiple conditions at once

I have two conditions that work fine
FILTER("article", ([bon] = [_THISROW].[bon]) and ORDERBY(article[id_article],[reste],false)

how to run these two cnditions at once , valid if

AND(FILTER(“article”, ([bon] = [_THISROW].[bon])) ,ORDERBY(article[id_article],[reste],false))

I try to use AND function but seems does not work, please how ti fix it
Thank you

Like this:

ORDERBY(FILTER(“article”, ([bon] = [_THISROW].[bon])), [reste], false)

See also:

1 Like

thank you very much Sir

1 Like

https://sites.google.com/site/bongtar-okay