Skip to main content

Report Catalog

Quick reference for all 22 gold models with sample =EPM() formulas for common reports.

Model Quick Reference

Financial Statements

ModelPurposeKey Measures
gold_trial_balancePeriod-level trial balanceperiod_debit, period_credit, period_net_amount, transaction_count
gold_pnl_by_periodIncome statement (revenue + expense only)period_net_amount
gold_balance_sheetBalance sheet (asset + liability + equity)cumulative_balance
gold_bs_movementBS movement scheduleopening_balance, period_movement, closing_balance

Time Aggregations

ModelPurposeKey Measures
gold_ytd_trial_balanceYear-to-date running totalsytd_debit, ytd_credit, ytd_net_amount
gold_pnl_quarterlyQuarterly P&Lquarter_net_amount
gold_pnl_half_yearlyHalf-yearly P&Lhalf_net_amount
gold_period_hierarchyPeriod → quarter/half mappingfiscal_quarter, fiscal_half

Budgeting & Variance

ModelPurposeKey Measures
gold_spread_budgetMonthly budget (spread from annual)period_amount, annual_amount
gold_variance_analysisActual vs budgetvariance_abs, variance_pct, variance_favorable
gold_variance_ytdYTD varianceytd_actual, ytd_budget
gold_variance_quarterlyQuarterly variance
gold_prior_year_comparisonYear-over-yearcurrent_amount, prior_year_amount, yoy_variance_abs

Consolidation

ModelPurposeKey Measures
gold_consolidated_trial_balanceFX-translated entity TBtranslated_amount, group_amount, nci_amount
gold_ic_eliminationsIntercompany entrieselimination_amount
gold_fx_revaluationCTA entriescta_amount
gold_consolidation_adjustmentsTop-side journalsnet_amount
gold_fully_consolidated_tb4-layer consolidated TBamount by adjustment_type
gold_consolidated_ytdYTD consolidatedytd_amount

Allocation & Scenarios

ModelPurposeKey Measures
gold_allocation_resultsCost allocation outputspool_amount, driver_weight, allocated_amount
gold_scenario_trial_balanceCross-scenario unionamount by scenario_id
gold_scenario_versionsScenario metadatais_active

Sample Reports

P&L by Month

A 12-month income statement for one entity.

=EPM($B$1, $D$1, B$2, $A3)

Where B1=entity, D1=year, row 2=period numbers (1–12), column A=account codes.

ABC...M
1Entity:USMFYear:...2024
2Account12...12
34100 - Revenue=EPM($B$1,$D$1,B$2,$A3).........
45100 - COGS=EPM($B$1,$D$1,B$2,$A4).........
5Gross Profit=B3+B4
66100 - SGA=EPM($B$1,$D$1,B$2,$A6).........

Quarterly P&L

=EPM("USMF", 2024, "Q1", "4100")
=EPM("USMF", 2024, "Q2", "4100")
=EPM("USMF", 2024, "Q3", "4100")
=EPM("USMF", 2024, "Q4", "4100")

Budget vs Actual (Full Year)

ABCDE
2AccountActual FYBudget FYVarianceFav?
34100=EPM("USMF",2025,"FY","4100")=EPM_BUDGET("USMF",2025,"FY","4100")=EPM_VARIANCE("USMF",2025,"FY","4100")=EPM("USMF",2025,"FY","4100","variance_favorable","variance")

Multi-Entity Comparison

ABCDE
2AccountUSMFDEMFGBMFJPMF
34100=EPM("USMF",2024,"FY",$A3)=EPM("DEMF",2024,"FY",$A3)=EPM("GBMF",2024,"FY",$A3)=EPM("JPMF",2024,"FY",$A3)

Debit/Credit Detail

For accounts where you need both sides:

=EPM_DEBIT("USMF", 2024, 5, "1300") ' Receivables debit
=EPM_CREDIT("USMF", 2024, 5, "1300") ' Receivables credit

Cost Center Drill-Down

=EPM("USMF", 2024, "FY", "7100", "period_net_amount", "actuals", "IT")
=EPM("USMF", 2024, "FY", "7100", "period_net_amount", "actuals", "SALES")
=EPM("USMF", 2024, "FY", "7100", "period_net_amount", "actuals", "FACILITY")

YTD Tracking

=EPM("USMF", 2024, 5, "4100", "ytd_net_amount")

Returns the cumulative net amount from period 1 through period 5.

Tips

  • Use absolute references ($B$1) for entity/year parameters and relative references for the varying dimension
  • Period ranges (Q1, H1, FY) save cells and improve readability
  • EPM_BUDGET and EPM_VARIANCE are shortcuts — the full EPM() with measure/scenario parameters gives access to all measures
  • Ctrl+Shift+R refreshes the active sheet; all EPM cells batch into a single API call
  • For large workbooks (1000+ EPM cells), use EPM_RefreshAll to process all sheets sequentially

Next Steps