Can you create Bins in vertical bar chart?

I have two data types. string and number. I want to bin together both. Here is an example. How would I do it? For example. In this graph, I have age group between 60-69 (kinda like histogram) but have two different answers from the string field. Yes or No. So almost 70 people that selected yes are between the ages of 60 and 69. Thanks
Screenshot 2024-01-16 at 3.13.49 PM

Hi @japeter89,

You can use a vertical clustered bar chart but you have to use a calculated field to create the bins yourself. For example, if age >= 60 and age < 70, your age group is ‘60-69’. Repeat this for every age group in an ifelse function. Then put your Age Group field on the x-axis and the Answer field in the Group/Color field well.

1 Like