Just wondering if I have the backend data in a SQL Server table as bit data type. How do I format the grid to show 0 as N and 1 as Y?
As Jack suggested, the simplest option would be to use an IF statement. You can put it in the rest service itself while assigning the value so that it sends a Y or N instead of 0/1.
Hi George,
You can use IF() in side the Expression, hope it can help you, thanks
Example:
If(GetDatabase.table.Ischecked = 1, "Y", "N")