Hi,
This problem has been given me issues for awhile now and I am completely lost. I have a bar chart that uses a specific beast mode.
CASE
WHEN SUM(Loads
) * (SUM(carrier pay
)/ SUM(Loads
)- avg(DATAllinAvgCPL
)) > 0 THEN SUM(Loads
) * (SUM(carrier pay
)/ SUM(Loads
)-avg(DATAllinAvgCPL
))
Else 0
END
The issues arises on the bar chart if I don't include a series. (This chart is calculating an incorrect number of 41,162.14
However when I add a series it calculates the correct number but the bar chart is not a solid color. I ideally want a solid bar chart. What might be causing this issue?