I had the same problem, but I was getting my data through a SQL query. If you are using SQL try something like:
select substring('Supply Fitted',(7*(fitted)),7) as isfitted, contractid from tblcontracts where ....
In my DB, fitted is a bit field (returns 1 for true), so substring as above returns first half or second half of 'Supply Fitted' as required
Check SQL BOL for substring Let me know if this helps
________________________________________________________________
If you want to get the best response to a question, please check out FAQ222-2244 first
'There are 10 kinds of people in the world: those who understand binary, and those who don't.'