vba - How to Apply a code in a RunningValue expression in SSRS -
i have following conundrum:
i made code inside report accumulate value, here:
dim number double function accumulate(byval value double) double number=number + value return number end function and made calculated field this:
code.accumulate(fields!myfield.value) now, field myfield it's number function run smoothly, problem following expression want apply code:
=formatnumber(runningvalue(fields!myotherfield.value, sum,"dataset"), 2) i can't because see have aggregate function can't create calculated field expression.
is there way can apply code expression or have create code same expression?
if need more info, ask away , edit original thread.
Comments
Post a Comment