sql - Code SSRS report to format -1 to Yes -
i have sql query displaying "-1" when selection made (this done through external script writing table) i'm wondering if can me code apply ssrs report auto format "yes"?
thanks in advance
two possible solutions can think of:
- modify query returns data report returns correct string in additional column depending on column of "boolean" column. in report, display value of new column.
- instead of displaying field value in report element directly, use expression report element , set
=iif(dataset!field.value = -1, "yes", "no")
.
Comments
Post a Comment