Beast Mode percentage formula gives different results on map than bar chart
I am trying to make a card that shows percentage of customers cancelling on a map. I am using the following Beast Mode formula to get the percentage of a whole: sum(case when `Status` = 'Cancelled' then 1 end)/ count(`Status`) When I display the results on a bar chart, I get results in the expected 0-100% range. However,…