reporting services - SSRS Position calculate Expression -


i trying show postions of student on basis of aggregate (aggregate ) enter image description here

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

Popular posts from this blog

angularjs - ADAL JS Angular- WebAPI add a new role claim to the token -

php - CakePHP HttpSockets send array of paramms -

node.js - Using Node without global install -