Hello all newbie to SSRS,
I have a crystal formula that I need converted to SSRS. What is the best solution for the expression? Do I keep it as a if statement or does SSRS use a different function? Any help would be helpful.
IF{RVS_CLAIM_MASTERS.PHCODE} =
"p" then
(IF isnull ({RVS_CLAIM_MASTERS.UnableToWorkFromDate}) THEN
""
ELSE totext({RVS_CLAIM_MASTERS.UnableToWorkFromDate},
"MM/dd/yyyy") )
ELSE IF {RVS_CLAIM_MASTERS.PHCODE} =
"H" THEN
(IF isnull ({RVS_CLAIM_MASTERS.UnableToWorkFromDate}) THEN
""
ELSE {RVS_CLAIM_MASTERS.REMARKS1} )