Oct 20, 2006 #1 Newbie456 Technical User Nov 21, 2005 37 US I have a pie chart based on a yes/no field. The legend reads -1 and 0. How do I change this text to meaningful values? I'm sure this is a simple answer. Thanks!
I have a pie chart based on a yes/no field. The legend reads -1 and 0. How do I change this text to meaningful values? I'm sure this is a simple answer. Thanks!
Oct 20, 2006 #2 lameid Programmer Jan 31, 2001 4,207 US Base your chart off a query. Instead of using the Yes/No field directly use something like the following. FieldYesNo: IIF(Table.FieldYesNo, "TextIfYes","TextIfNo") Upvote 0 Downvote
Base your chart off a query. Instead of using the Yes/No field directly use something like the following. FieldYesNo: IIF(Table.FieldYesNo, "TextIfYes","TextIfNo")