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,
We've been looking into the issue and we believe we have isolated the root cause and have a lead on a fix. Because of the nature of the issue, we cannot provide a workaround for it at this time, but we are optimistic about finding the fix for it and implementing it in the next bi-weekly build
As before, I will update you on our progress on this issue as we develop the situation.
I have escalated this issue to my platform lead, so our developer will be looking into it as a high priority item. You can expect a fix by our next bi-weekly build, which will be April 22nd. I have personally contacting the developer working on this to keep me updated on any work arounds he finds in the meantime, and will pass them onto you as soon as I get any.
I apologize for the inconvenience, but I will update you on our progress no later than Wednesday of next week.
Hi John,
Any update on this? Don't mean to be pushy, but this project is really high priority for me and I can't deploy until this is fixed.
I have investigated your issue, and I have asked our engineering staff to examine this further. To ensure that it will receive attention, I have logged this behavior in our internal tracking system with a Development ID of 217418. The next step will be for a developer to review my investigation and confirm my findings or to offer a fix, or other resolution.
I will update you with any workaround that we can find while we investigate the root cause of the issue.
Please let me know if you need more information.
Thanks! I'd love to get at least a work around!