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" -

linux - Does gcc have any options to add version info in ELF binary file? -

java - Are there any classes that implement javax.persistence.Parameter<T>? -