Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am trying to calculate the Max Quarter Amount based on below calculation but it is throwing Error,
NUM(sum({$<NCRQuarter={$(vMaxQuarter)}>} Actual_Amount), '###')
Where
vMaxQuarter='Q'&Max(ceil(month(NCRIdentificationDate)/3))
&
NCRQuarter='Q'&CEIL( MONTH(NCRIdentificationDate) / 3)
Please help.
Try with double quotes
NUM(sum({$<NCRQuarter={"$(=vMaxQuarter)"}>} Actual_Amount), '###')
May be try this
NUM(sum({$<NCRQuarter={'$(=vMaxQuarter)'}>} Actual_Amount), '###')
Hi Sunny,
Thanks for reply.
But it is still showing error as 'error in set modifier ad hoc element list'
Try with double quotes
NUM(sum({$<NCRQuarter={"$(=vMaxQuarter)"}>} Actual_Amount), '###')
THANKS for help dear..