I have a report region on my page and it’s getting data from a students table. Within that table, there’s a column called cv_lodged which is either 1 or 0 representing Yes or No. In the report it shows this columns data as 0 or 1, I want to change it to show Yes or No.
How can I do this?
You can put a
CASEstatement in your queryIf this is something that is likely to be common, you’re probably better served creating a function that converts your pseudo-boolean data to a string. Something like
that you would call in your query