Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello i need an operator used to count element not ugual to a certain condition like this it doesn't work:
=Count({<STATO<>{'SCADUTA'},STATO<>{'ATTIVATA'}> }DISTINCT NUMERO_PROPOSTA)
How can be made without using the <> operator?
Thanks
Marco
replace <> with -=
=Count({<STATO-={'SCADUTA','ATTIVATA'}> }DISTINCT NUMERO_PROPOSTA)
or this should also work for you
=Count({<STATO = e({<STATO = {'SCADUTA','ATTIVATA'}>})>} DISTINCT NUMERO_PROPOSTA)
Hi there Marco,
try:
=Count({<STATO += {'SCADUTA'},STATO += {'ATTIVATA'}> }DISTINCT NUMERO_PROPOSTA)
You will get a red underline but it is ok.
Marco is asking for not equal
Hi Marco,
Sorry it is -= NOT +=
Ok
Thanks
Marco