Does anyone have any idea what could be causing this issue
The holighted Cell Value should be the "Sum" of the groups "Items" but its total seems to be the same as the Items under Material even though there is no data in that Group for the Price Field
I've also included the code I wrote to calculate the totals for the Price Line. It only appears to happen if the entire gruop has a zero total
If I remove the PartName grouping the issues gets solved.
Inside of ds_AggregateMeasure
if (e.MeasureDescriptor.Name == "Price") { decimal total = 0M; decimal count = 0M; foreach (object o in e.Items) { var item = o as FrBudget; if (item != null) total += item.Price; count += 1M; } e.Value = total; e.Handled = true; }
Jose,
I sent you an email including a link to a private build with the fix for this issue. Please let me know if you got it, and if you have any more questions regarding this issue.
We have verified this fix, and are now working to deploy a private build for you. I will provide this private build for you on Monday.
ok thank you!
Hello Jose,
At this time, our developers are continuing to work on the issue. We have developed a fix internally, and now it needs to pass testing verification in order to be included in our next bi-weekly build. I can give you another update on its progress no later than Friday the 29th
Hey john,
Any update on this?
Thanks!