Reporting multi-select field | Community
Skip to main content
Level 5
March 22, 2024
Solved

Reporting multi-select field

  • March 22, 2024
  • 1 reply
  • 1259 views

We have a multi-select field called "Brand" where they are able to select between 1-15 different brands, and I am looking for a way to build 1 project report (chart view) that will count each of those selections individually -- rather than needing a separate report for each brand.

 

I am thinking we will need calculated fields for each of the 15 different brands that populates a count of 1, but am unsure how to go from there to sum up the counts into 1 combined chart... I've seen a few similar posts about this but can't seem to find the correct solution. 

 

For example:

If Brand A, Brand B, Brand, C, Brand D are selected, I'd like to have

A = 1

B = 1

C = 1

D = 1

 

rather than

A, B, C, D = 1. 

 

Any suggestions are appreciated 🙂 Thank you!!

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Scott_Goodwin

Hello @kasey-gagne 

You could have a custom form that is attached to every project. That will check the brand input and then add 1 to the field representing that brand and put 0 in all the others. You then create a report based on these new values and sum them up. 

 

Giving you a report that shows you the Sum of each Brand count across all projects. 

 

Example: 

Project 1 has had Brand "Scott" input. My new custom form will have calculated fields to represent every possible brand. So "Scott Brand" "Good Brand" "Win Brand" 

They will be IF statements to check the original brand input so IF({DE:brandinput}="Scott", 1, 0) and rinse and repeat for all your brand's. 

Then pull report on the new Custom form. 

 

Caveat is that you need to make sure you update both custom forms if a new brand is added. There mite be a nicer way out there. 

 

Hopefully this makes sense if not let me know a and I can make an example. 

1 reply

Scott_Goodwin
Scott_GoodwinAccepted solution
Level 3
March 23, 2024

Hello @kasey-gagne 

You could have a custom form that is attached to every project. That will check the brand input and then add 1 to the field representing that brand and put 0 in all the others. You then create a report based on these new values and sum them up. 

 

Giving you a report that shows you the Sum of each Brand count across all projects. 

 

Example: 

Project 1 has had Brand "Scott" input. My new custom form will have calculated fields to represent every possible brand. So "Scott Brand" "Good Brand" "Win Brand" 

They will be IF statements to check the original brand input so IF({DE:brandinput}="Scott", 1, 0) and rinse and repeat for all your brand's. 

Then pull report on the new Custom form. 

 

Caveat is that you need to make sure you update both custom forms if a new brand is added. There mite be a nicer way out there. 

 

Hopefully this makes sense if not let me know a and I can make an example. 

Level 5
March 26, 2024

Thank you so much, I'm going to give this a try! 😃

 

I guess my only question would be how to use these individual brand fields as a Grouping to display the sum of each brand within 1 chart - if that makes sense.. 

JessicaBCrum
Level 2
September 5, 2024

Did you ever figure out how to do this? I have a similar situation and the solution above didn't make total sense to me.