0 = unknown
1 = Rents
2 = Owns
Can I do this as a calculated field or can I decode the data and present it in the same field?
2 answers
If that is how you are going to be importing it, then you should hide that field on the page layout and have another custom formula field, returning text with a formula of:
CASE(
customfieldname__c,
1,"Rents",
2,"Owns",
"Unknown"
)
Then display that field on the page layout, that would be the easiest way if you intend to continue moving data in with the numeric values.
--KC