Skip to main content
I'm creating a report and I want to group my data by state.  However, I don't want a report that hows all 50 states, I only want three groups - FL, blank and All others.  How do I do this?

 

Thanks,

 

Kathy
7 answers
  1. Jun 3, 2016, 8:05 PM
    Are you referencing a Standard SFDC Date Field? 

     

    If it is you could use a CASE function like this

    CASE( State ,

    NULL,"Blank",

    "FL", "FL",

    "Other")

     

     
0/9000