I've been using Crystal Reports for about 2 years and now I'm trying to learn SSRS in order to convert some of our custom reports over to SSRS.
In the DB, I have a column called OpenToPublic which will either be 0 for No or 1 for Yes. In CR, I created a formula to display on the report either Y or N depending upon the value:
if {DriveMaster.OpenToPublic} then 'Y'
else 'N'
What would be the best way to accomplish the same thing in SSRS? Is it an expression?