reporting services - SSRS Position calculate Expression -
i trying show postions of student on basis of aggregate (aggregate )
the aggregate expressions calculating on basis of (final + mock + asst)/3 m doing on run time expression calculate...
now unable display position positions column highest aggregate highest positions(1 or 2 or 3 ) positions there expression can write show positions column. please me m stuck
there's not function can use - you'd need use iifs:
=iif(fields!final.value >= fields!mock.value , fields!final.value >= fields!asst.value, 1, iif(fields!mock.value >= fields!final.value , fields!mock.value >= fields!asst.value, 2, 3))
Comments
Post a Comment