Bar graph not displaying data accurately

Hello,
I am trying to show member distribution across different countries but some fields appear empty as shown on the first image but in reality the fields have data on the database.

Anybody know how i could approach this?

Hi there,

The Y values should have the grouped by with an aggregation, count in your case. You are using :count which will give the total of groups rather than the list of counts

For the X Values use the same expression as above without the aggregation, then add the expression: each group’s text

1 Like

Thank you.

This solved the issue.