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:

  1. modify query returns data report returns correct string in additional column depending on column of "boolean" column. in report, display value of new column.
  2. instead of displaying field value in report element directly, use expression report element , set =iif(dataset!field.value = -1, "yes", "no").

Comments

Popular posts from this blog

sql - can we replace full join with union of left and right join? why not? -

javascript - Parallax scrolling and fixed footer code causing width issues -

iOS: Performance of reloading UIImage(name:...) -