Hi I am trying to create a beastmode that takes this months balance and subtract it from last months balance also known as this months beginning balance.
sum(CASE WHEN `Month ` = '3' then `AR Balance` else 0 end) - sum(case when `Month ` = 4 then `AR Balance`else 0 end)
My problem with the above is the two values aren't ending up in the bar graph together under the current month. Instead I get a postive number for Month 3 and a negative number for Month 4 and I'm not sure how to make the appear in the same bar.
Basically I need the change in the balance from last month to this month all as the value for this month.