Validating datasets that has different formats

I need to validate 2 finance datasets to ensure the numbers match for all GL accounts.
Dataset A:
Columns: Account_name, Branch_id, MTD, MTD Budget, MTD Last Year, YTD, YTD Budget, YTD Last Year.
This dataset is generated monthly from the ERP system, with pre-calculated values. I need to append it each month after adding year and month columns in Excel.
Dataset B:
Columns: Year, Month, Branch_id, GL_account_id, Account_name, Balance_Amount, Budget_Amount.
This dataset is a replica from an on-prem DB and does not include MTD, MTD Budget, etc. calculations. Data ranges from Feb 2023 to Sep 2024.
To validate, I want to join these datasets using the keys: account_name, year, month, and branch_id. Since I can’t convert A to B due to missing individual monthly breakdowns for YTD, I prefer converting B to A.
I was able to turn Dataset B → A using BeastMode to calculate MTD, MTD Budget, MTD Last Year, YTD, YTD Budget, YTD Last Yea
values, but I can’t join it with Dataset A for validation. Can I convert B to A using Magic ETL & then join in dataset A?
My concerns with ETL is since I have multiple month, I'm not sure how to write SUM(Case when) so the all the MTD, YTD, calculations for every month. Fiscal year start from Feb to Jan next year, I could add a month end date column so it's easier for case when
Best Answer
-
If your fiscal year starts in February, you need some type of fiscal year definition, Fiscal Year.
CASE
WHEN MONTH >= 2 THEN YEAR
ELSE YEAR - 1
ENDFor a date calculation, you would have something like
CONCAT(Year, '-', Month, '-01')
To get the last day of the month, use:
- Add Days function: Add 1 month to the first day of the month.
- Add Days again: Subtract 1 day to get the last day of the current month.
** Was this post helpful? Click Agree or Like below. **
** Did this solve your problem? Accept it as a solution! **0
Answers
-
If your fiscal year starts in February, you need some type of fiscal year definition, Fiscal Year.
CASE
WHEN MONTH >= 2 THEN YEAR
ELSE YEAR - 1
ENDFor a date calculation, you would have something like
CONCAT(Year, '-', Month, '-01')
To get the last day of the month, use:
- Add Days function: Add 1 month to the first day of the month.
- Add Days again: Subtract 1 day to get the last day of the current month.
** Was this post helpful? Click Agree or Like below. **
** Did this solve your problem? Accept it as a solution! **0
Categories
- All Categories
- 2K Product Ideas
- 2K Ideas Exchange
- 1.6K Connect
- 1.3K Connectors
- 310 Workbench
- 7 Cloud Amplifier
- 9 Federated
- 3K Transform
- 113 SQL DataFlows
- 654 Datasets
- 2.2K Magic ETL
- 4K Visualize
- 2.5K Charting
- 796 Beast Mode
- 78 App Studio
- 44 Variables
- 757 Automate
- 188 Apps
- 480 APIs & Domo Developer
- 72 Workflows
- 17 DomoAI
- 40 Predict
- 17 Jupyter Workspaces
- 23 R & Python Tiles
- 408 Distribute
- 119 Domo Everywhere
- 279 Scheduled Reports
- 10 Software Integrations
- 141 Manage
- 137 Governance & Security
- 8 Domo Community Gallery
- 47 Product Releases
- 12 Domo University
- 5.4K Community Forums
- 41 Getting Started
- 31 Community Member Introductions
- 114 Community Announcements
- 4.8K Archive