Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I want to do a calculation with a selection other than (<>) but it doesn't work for me, indicating the error in <>
Sum({<[Tipo]={'0'}, [Nombre]<>{'xxxxx}>} Peso)
You appear to be missing a closing apostrophe
Sum({<[Tipo]={'0'}, [Nombre]<>{'xxxxx}>} Peso)
vs
Sum({<[Tipo]={'0'}, [Nombre]<>{'xxxxx'}>} Peso)
However, I suspect that was a typo when you created the post.
Instead of <> try =- So,
Sum({<[Tipo]={'0'}, [Nombre]=-{'xxxxx'}>} Peso)
Thanks
Sum({<[Tipo]={'0'}, [Nombre]=-{'xxxxx'}>} Peso)
🙂