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

Popular posts from this blog

1111. appearing after print sequence - php -

java - WARN : org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/board/] in DispatcherServlet with name 'appServlet' -

Ruby on Rails, ActiveRecord, Postgres, UTF-8 and ASCII-8BIT encodings -