Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am trying populate (not just show) null values as Zero while using Aggr().Tried if condition but no luck.
aggr((count({<Fiedl1={'2016'}>}Distinct Field2)),Field3)
Thanks
Or just this
Sum(Aggr((Count({<Fiedl1={'2016'}>}Distinct Field2)), Field3))
May be this?
Alt(aggr((count({<Fiedl1={'2016'}>}Distinct Field2)),Field3), 0)
Or just this
Sum(Aggr((Count({<Fiedl1={'2016'}>}Distinct Field2)), Field3))
Thanks Sunny and Vishwanath .Both solutions work perfect
Your solution works perfect but Totals not populating.
Sunny your solution works and also shows right totals on top.Thanks