Account Ledger Running Balance Beast Mode
Hi All,
I am having trouble coming up with. beast mode to create a running balance for an accoutn ledger. I have all of my charges and reciepts but i cannot create a running balance to show the correct totals. Any help with this would be much appreciated. I have atached a picture showing the card i am working with. As you can see all the balance column is doing is taking the charge or receipt total. Thank you very much!
David
Best Answer
-
To troubleshoot this try to isolate where the error is.
sum(
sum(
(CASE when `Type`='Charge' then `Amount Paid` else 0 end)+
(CASE when `Type`='Receipt' then `Total Amount` else 0 end)*(-1)
) over (order by `Date Created` asc))
figure out does this do what you expect it to do?
sum(
(CASE when `Type`='Charge' then `Amount Paid` else 0 end)+
(CASE when `Type`='Receipt' then `Total Amount` else 0 end)*(-1)
)
I wouldn't expect it to... or at least, i believe you can simplify your case statement:
sum(
CASE
when `Type`='Charge' then `Amount Paid`
when `Type`='Receipt' then `Total Amount` * -1
else null
END
)
)
THEN Does this give the desired result?
sum( sum( `Amount Paid`) over (order by `Date Created` asc))
I wouldn't expect it to.
sum( sum( `Amount Paid`) ) over (order by `Date Created` asc)
Note how the parenthesis moved.
Jae Wilson
Check out my 🎥 Domo Training YouTube Channel 👨💻
**Say "Thanks" by clicking the ❤️ in the post that helped you.
**Please mark the post that solves your problem by clicking on "Accept as Solution"0
Answers
-
You'll want to do this utilizing an ETL. It's possible to do it in a Beast Mode with window functions however it would start on the first date that is filtered and not going back entirely in time to the start of your ledger. For example if you only displayed this year the beast mode variant would have $0 to start the year rather than the carry over from last year.
Here's a prior solution to using MySQL ETL to get a running total you could look at.
https://dojo.domo.com/t5/Beast-Mode-ETL-Dataflow/Running-total-ETL-or-MySql/m-p/39593
**Was this post helpful? Click Agree or Like below**
**Did this solve your problem? Accept it as a solution!**1 -
You can accomplis this window functions if you have them enabled in your instance, you may have to ask your CSM to 'enable window functions in beast modes'
try the following beast mode:
sum(sum(amount) over (order by date_column asc)
just swap in the correct column names
To overcome the ledger problem APPEND a snapshot row to your dataset that shows the lifetime balance at the start of the year.
Jae Wilson
Check out my 🎥 Domo Training YouTube Channel 👨💻
**Say "Thanks" by clicking the ❤️ in the post that helped you.
**Please mark the post that solves your problem by clicking on "Accept as Solution"0 -
Hi jae,
I will reach out to our CSM to see about window functions.
For your sum beast mode how would it look whem i am trying to sum (Charge) + (Receipt) on some of the line items. It not always just summing charges or receipts. Thanks
0 -
I tried this:
sum(sum((CASE when `Type`='Charge' then `Amount Paid` else 0 end)+(CASE when `Type`='Receipt' then `Total Amount` else 0 end)*(-1)) over (order by `Date Created` asc))
It was valid but my card is now not loading so i rposbably did something wrong.
0 -
To troubleshoot this try to isolate where the error is.
sum(
sum(
(CASE when `Type`='Charge' then `Amount Paid` else 0 end)+
(CASE when `Type`='Receipt' then `Total Amount` else 0 end)*(-1)
) over (order by `Date Created` asc))
figure out does this do what you expect it to do?
sum(
(CASE when `Type`='Charge' then `Amount Paid` else 0 end)+
(CASE when `Type`='Receipt' then `Total Amount` else 0 end)*(-1)
)
I wouldn't expect it to... or at least, i believe you can simplify your case statement:
sum(
CASE
when `Type`='Charge' then `Amount Paid`
when `Type`='Receipt' then `Total Amount` * -1
else null
END
)
)
THEN Does this give the desired result?
sum( sum( `Amount Paid`) over (order by `Date Created` asc))
I wouldn't expect it to.
sum( sum( `Amount Paid`) ) over (order by `Date Created` asc)
Note how the parenthesis moved.
Jae Wilson
Check out my 🎥 Domo Training YouTube Channel 👨💻
**Say "Thanks" by clicking the ❤️ in the post that helped you.
**Please mark the post that solves your problem by clicking on "Accept as Solution"0
Categories
- All Categories
- 1.8K Product Ideas
- 1.8K Ideas Exchange
- 1.5K Connect
- 1.2K Connectors
- 300 Workbench
- 6 Cloud Amplifier
- 8 Federated
- 2.9K Transform
- 100 SQL DataFlows
- 616 Datasets
- 2.2K Magic ETL
- 3.8K Visualize
- 2.5K Charting
- 737 Beast Mode
- 56 App Studio
- 40 Variables
- 684 Automate
- 176 Apps
- 452 APIs & Domo Developer
- 46 Workflows
- 10 DomoAI
- 35 Predict
- 14 Jupyter Workspaces
- 21 R & Python Tiles
- 394 Distribute
- 113 Domo Everywhere
- 275 Scheduled Reports
- 6 Software Integrations
- 123 Manage
- 120 Governance & Security
- 8 Domo Community Gallery
- 38 Product Releases
- 10 Domo University
- 5.4K Community Forums
- 40 Getting Started
- 30 Community Member Introductions
- 108 Community Announcements
- 4.8K Archive