Thread: Please Help
View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.misc
Ron Rosenfeld Ron Rosenfeld is offline
external usenet poster
 
Posts: 5,651
Default Please Help

On Fri, 21 Dec 2007 16:44:02 -0800, JasonTWCWI
wrote:

I am having issues with an "if" formula. This is what I need to happen; if I
type 95, 96, 97, 98, 99, or 100 in a specific field I need that same field to
then show the word PLATINUM.


You can't do it with an IF formula because when you type in a value, you will
erase the IF formula.

You could do it with custom formatting.

e.g. Format/Cells/Number/Custom
Type: [<95]General;[<=100]"Platinum";General


--ron