In SQL server reporting services(SSRS) tablix cell, i want to write an expression as follows:-
set the value of variable and use that variable in "if" condition. i have written following expression and its working fine, only issue is i want only "if" condition to be evaluate. currently output is : "TrueVariable text is NA"
=Variables!myVar.SetValue("NA") &IIf(Variables!myVar.Value="NA","Variable text is NA","Variable text is not NA")