sql - How do I use Previous function in SSRS -


i'm working on ssrs report.

there 2 main fields currentmv , previousmv both having there different formulas need change field previousmv take value of currentmv previous date value i'm trying using previous function of ssrs

please me.

field currentmv having expression =sum(fields!currentmv.value) enter image description here

you should able use:

=previous(sum(fields!currentmv.value)) 

or

=previous(sum(fields!currentmv.value, "detail"), "detail") 

more reading.


Comments

Popular posts from this blog

php - Why I am getting the Error "Commands out of sync; you can't run this command now" -

ruby - Nesting modules inside of a Rails eninge gem -

Eclipse formatter for java ending braces -