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) 
you should able use:
=previous(sum(fields!currentmv.value)) or
=previous(sum(fields!currentmv.value, "detail"), "detail")
Comments
Post a Comment