Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello, guys!
For example:
I have a variable
vSumOfSales = Sum($1 [Sales])
and some flags like:
fCMTD = {<[_CMTD_Flag] = {1}>}
fClearProduct = {<[Product]=>}
and some more...
Is there a way to combine such flags to use in vSumOfSales like parameter?
Thank you.
You can try this may be
vSumOfSales = Sum({<$1, $2, $3, $4, $5, $6, $7>} [Sales])
you can include extra $... for additional parameters .and then use it like this
$(vSumOfSales([_CMTD_Flag] = {1}, [Product]))
You can try this may be
vSumOfSales = Sum({<$1, $2, $3, $4, $5, $6, $7>} [Sales])
you can include extra $... for additional parameters .and then use it like this
$(vSumOfSales([_CMTD_Flag] = {1}, [Product]))