Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi I would like to know if this expression is correct or not.
=
SUM( {$<Gestion.FechaRegistro={"<=$(#vFFG) >=$(#vFIG)"} , Gestion.CodigoCliente ={ 'CNA009002'}>, }Gestion.Qty)
Thanks
Are you getting an error? Null?
The only thing I see is equal signs (not #s) in the dollar sign expansions:
=SUM( {$<Gestion.FechaRegistro={'<=$(=vFFG) >=$(=vFIG)'} ,
Gestion.CodigoCliente ={ 'CNA009002'}>, }Gestion.Qty)
That seems like it should be valid.
I put #s because vFFG and vFIG are variables, is not correct. I made the following correction and it works
SUM( {$<Gestion.FechaRegistro={"<=$(#vFFG) >=$(#vFIG)"} ,
Gestion.CodigoCliente =
{'CNA009002','CNA009003'}>} Gestion.Qty )
Thanks for you answer.