Discussions

 View Only
  • 1.  Combining multiple groups into few groups

    Posted 03-22-2017 19:42
    Hi Guys, I wanted to combine data and group these 12 categories into 4 categories. How can i group together data, so that my report shows only 4 category colors instead of 12


  • 2.  RE: Combining multiple groups into few groups

    Posted 03-22-2017 20:14
    Create another field or lookup field (depending on your set up and relationships)

    Those new categories will basically sub-group things out.  Then use those for your report.  

    Can you describe your relationships and current set up a little more?


  • 3.  RE: Combining multiple groups into few groups

    Posted 03-23-2017 18:05
    Thanks matthew,
    In this i have investment for each category and i want to combine my investment in 4 parts Very Important, Important ,Normal,can be Delayed. For that i wanted to join investment of each above category and wanted to group them. If possible can you please elaborate on how can i do that.. Maybe a formula or something..


  • 4.  RE: Combining multiple groups into few groups

    Posted 03-23-2017 18:17
    Create a formula-text field and use a case formula to 'categorize' your importance.

    Call the field [Importance]
    >
    use this formula structure (some of the names or fields may need to change based on your naming)
    >

    Case([Category Field],
    "B", "Very Important",
    "Hotels", "Very Important", 
    "International", "Very Important",
    "IR", "Important",
    "Meals", "Important", 
    "P", "Important",
    "C", "Normal",
    "Direct", "Normal",
    "Running", "Normal",
    "Contract", "Can Be Delayed",
    "Strategy", "Can Be Delayed",
    "P", "Can Be Delayed",
    "")