I am creating a field from tables with our shoretel phone system and i am intergrating reports via SSRS and i need some assisstance with an expression.

=if(Fields!ExitReason.Value 7, then if (Fields!ExitReason.Value 1, else if (Fields!ExitReason.Value 0,))) 

Definition results should be:

=if(Fields!ExitReason.Value) = 7 then 1 else 0 

I am try to get the field to give me 7, 1 else 0. Any assistance would be great.

Thanks, Arron

1

1 Answer

You should be able to use

IIF(Fields!ExitReason.Value = 7, 1, 0) 

3

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy