• Skip to main content
  • Skip to footer
Revelwood Logo

Revelwood

Your SUPER-powered WP Engine Site

  • Who We Are
    • About Us
      • Our Company
      • Our Team
      • Partners
    • Careers
      • Join Our Team
  • What We Do
    • Solutions
      • Workday Adaptive Planning
      • IBM Planning Analytics
      • BlackLine
    • Services
      • Implementation Services
      • Customer Care
        • Help Desk
        • System Administration as a Service
      • Training
        • Workday Adaptive Planning Training
        • IBM Planning Analytics / TM1 Training
    • Products
      • DataMaestro
      • LightSpeed
      • IBM Planning Analytics Utilities
  • How We Help
    • Use Cases
    • Client Success Stories
  • How We Think
    • Knowledge Center
    • Events
    • News
  • Contact Us

Financial Performance Management

The Importance of Including FP&A Early and Often in Your Strategic Planning Process

July 12, 2019 by Brian Combs Leave a Comment

FP&A Done Right

The Strategic Planning process at many companies is in sore need of an overhaul. As many of you know, the “Strat Plan” can take on a life of its own. It was not too long ago that I was the guy who had the pleasure of creating and consolidating the Strategic Plan along with all the initiatives created by our VPs and functional areas. The greenfield initiatives. The cost savings initiatives. The sales and marketing initiatives. The IT initiatives. The “I have this great idea that will generate millions in revenue with zero cost” initiatives. Need I continue?

They all sounded great and many of them had reasonable assumptions, but it was simply not possible to complete all those initiatives in the year. On top of that, there were diminishing returns with each cost savings measure and many of the strategies required access to the same resources and capital. The owner of each initiative treated the benefits as if their initiative was the only one that would take place. It became my job to push back and infuse a bit of realism in the numbers since I had the big picture view and was crafting the overall story. 

I frequently said to myself, “Wow, I wish I had known about all of these great initiatives at the beginning of the planning cycle.” As I added all the initiatives to my model, along with all the goodness they were supposed to create, I was left with a huge same store decrease as my plug. Or I played the inflation factor game and increased my cost assumptions. As Anders Liu-Lindberg said in “Why FP&A Must Transform the Strategy Process,” “…by the time FP&A gets involved it’s often too late to shape the strategy, so FP&A resorts to cooking up some numbers based on the strategy.” My P&L was substantively complete before I received the strategic components that summed together to support it! Now that I had all these “good guys”, I needed to create “bad guys” to offset them so I didn’t end up with an unrealistically high profit in my plan. 

It is critical to include FP&A in your strategic planning process as early as possible. Become a true Finance business partner and engage with the respective owners before they begin to create the pro forma P&L for their initiative. Once those are all created, compile a summary of them and send it out to the entire team. In my experience, that sparked discussion amongst the senior team since they could now see the same overlaps that I did. Communication is almost always the answer. This will allow you to become a facilitator of the process rather than an actor who appears in the closing scenes of the movie to tie up the loose ends. 

I have written in the past about the importance of Finance acting as the conductor/storyteller. By involving FP&A earlier in the process, we can ensure that the story is centered around a unified vision rather than a piecemeal strategy that is more akin to a book of short stories. The latter provides everyone something that may be important to them, but the collective is weaker as a direct result. Utilize your FP&A team to make the tough decisions early in your strategic planning process so the company can rally around those initiatives and create a roadmap to get there.

Read more posts in Brian’s FP&A Done Right Series:

FP&A Done Right: 5 Signs it’s Time to Rethink Your Process

FP&A Done Right: Creating a Shared Vision Between Finance and IT

Why, Why, Why, Why? – The Hallmark of a Great FP&A Practitioner

Home » Financial Performance Management » Page 30

Filed Under: FP&A Done Right Tagged With: Analytics, Financial Performance Management, FP&A

IBM Planning Analytics Tips & Tricks: Ways to Stop a TI Process

July 9, 2019 by Lee Lazarow Leave a Comment

Tips & Tricks

Did you know there are two different ways to stop a TurboIntegrator script?

The ProcessBreak command stops processing source data and proceeds directly to the Epilog.  This approach allows you still run code in the Epilog that can perform tasks such as deleting subsets, writing to a process tracking cube, or running other processes.

Here is an example of skipping the data and metadata section if a parameter called pVersion does not exist:

            IF ( DIMIX ( ‘Version’, pVersion) = 0 );
                 PROCESSBREAK;
            ENDIF;

As you can see, there are no parameters to this command.  You use this by simply telling Planning Analytics to go to the Epilog.

If, however, you want to completely end the process then you can use the ProcessQuit command.  This command completely terminates the process without running anything in the Epilog.  Here is an example of doing the same check with ProcessQuit.

            IF ( DIMIX ( ‘Version’, pVersion) = 0 );
                 PROCESSQUIT;
            ENDIF;

It’s up to you to determine how you want to stop a TI script from processing.

IBM Planning Analytics, which TM1 is the engine for, is full of new features and functionality. Not sure where to start? Our team here at Revelwood can help. Contact us for more information at info@revelwood.com. And stay tuned for more Planning Analytics Tips & Tricks weekly in our Knowledge Center and in upcoming newsletters!

Learn more IBM Planning Analytics Tips & Tricks:

IBM Planning Analytics Tips & Tricks: Ways to Skip a Record Using a TI Process

IBM Planning Analytics Tips & Tricks: Creating Selectors in Planning Analytics Workspace

IBM Planning Analytics Tips & Tricks: Creating Buttons in Planning Analytics Workspace

Need more guidance? Take a look at our IBM Planning Analytics Training services and our Customer Care Program.

Home » Financial Performance Management » Page 30

Filed Under: IBM Planning Analytics Tips & Tricks Tagged With: Analytics, Budgeting, Budgeting Planning & Forecasting, Financial Performance Management, IBM Planning Analytics, Planning & Reporting, TM1

IBM Planning Analytics Tips & Tricks: Ways to Skip a Record Using a TI Process

July 2, 2019 by Lee Lazarow Leave a Comment

Tips & Tricks

Did you know there are two different ways to skip specific records when you are running TurboIntegrator scripts?

ItemSkip is used to skip a specific record. This is often nested within an IF statement and used when you want to simply ignore a record. Here is an example of skipping a record if a variable called vValue is negative:

            IF ( vValue < 0 );
                 ITEMSKIP;
            ENDIF;

As you can see, there are no parameters to this command. You use this by simply telling Planning Analytics to skip the record.

If, however, you want to skip the record and create a record in the error log then you can use the ItemReject command. This command allows you to customize the message that appears in the log. Here is an example of rejecting the same record using ItemReject.

            IF ( vValue < 0 );
                 ITEMREJECT (‘The value is less than zero.’);
            ENDIF;

It’s up to you to determine how you want to skip records.

IBM Planning Analytics, which TM1 is the engine for, is full of new features and functionality. Not sure where to start? Our team here at Revelwood can help. Contact us for more information at info@revelwood.com. And stay tuned for more Planning Analytics Tips & Tricks weekly in our Knowledge Center and in upcoming newsletters!

Learn more IBM Planning Analytics Tips & Tricks:

IBM Planning Analytics Tips & Tricks: Creating Selectors in Planning Analytics Workspace

IBM Planning Analytics Tips & Tricks: Creating Buttons in Planning Analytics Workspace

IBM Planning Analytics Tips & Tricks: Synchronizing Selectors in Planning Analytics Workspace

Home » Financial Performance Management » Page 30

Filed Under: IBM Planning Analytics Tips & Tricks Tagged With: Analytics, Budgeting, Budgeting Planning & Forecasting, Financial Performance Management, IBM Planning Analytics, Planning & Reporting, TM1

FP&A Done Right: 5 Signs It’s Time to Rethink Your Process

June 28, 2019 by Brian Combs Leave a Comment

FP&A Done Right

If you have been following this blog series, you know that I am a ‘people and process’ guy. I’ve discussed how we become so good at circumventing the process that those workarounds become the process. Keep in mind, however, that a workaround, by definition, is meant to be temporary. When you are stuck in the weeds of your daily tasks, it’s almost impossible to see that your process is askew. If that is the case, how can we recognize that it’s time to step back and rethink our planning and reporting process?

Based on my years of experience in FP&A practice and consulting, I’ve pulled together 5 signs that it’s time to rethink your process. Some of these can be corrected with minor tweaks to our systems while others may require a major overhaul.

Offline manipulation of data

This is a telltale sign that something is off. There are any number of reasons that we do this. I used to do it because my boss wanted a different number than my system-generated reports were producing. Note that I said different, not necessarily right. Oftentimes, we have multiple metrics and KPIs with the same or similar names, but different calculations. Maybe we want to back out a few GL accounts from a certain Revenue metric or we have a series of ‘one-time’ exclusions. (On a side note, that’s an interesting phrase. In my experience, those one-time exclusions are used many times…) It is easier to simply massage the data or create our own math in Excel to complete the task at hand. After all, I can justify anything with a footnote! We should, however, be challenging the intent behind these requests. Perhaps your reporting capabilities are limited and you use Excel schedules to standardize outputs. Sometimes we export data so we can marry it up with data from other systems and reports. At the end of day, when you manipulate data offline, you lose the power of your planning and reporting tool and you turn it into a basic report repository.

I’m sure you can think of many other reasons why you need to manipulate data offline.  I will argue that each of them can be solved with process or system changes. 

No standardization across your business units and functions

This is a big one for me. The lack of standardization and automation of technology and process makes it difficult to streamline your actions and to understand the root cause of an issue. I frequently heard, “Brian, we don’t do it that way. It’s different in my department . You don’t understand.” If you choose your metrics and processes correctly, that is not true. Management and FP&A must have the ability to drill from the macro to the micro. If I see a variance or issue on a report for my global rollup, I need to be able to drill all the way down to the store front or profit/cost center to see what the driver is. If every location is not using the same metrics, calculations, or account granularity, my analysis can be misleading. I love ranking and quartiling reports. By focusing on metrics at the individual locations, I can learn what works and what doesn’t work and then educate the front line on changes they can make that are working for their peers. This only makes sense, however, if you have an apples-to-apples comparison.

Keep in mind that while working towards standard processes, you must ensure you get universal adoption. Without that, you will find that people will revert to their previous methods and will ignore your new process (see the first sign above). 

Last-minute changes to your forecast or budget cause a frenzy of activity

I can still remember the feeling when my phone rang at 5:29pm the night before a big deep-dive review or Board Meeting. You know what I’m talking about. THE call. You finally completed running the last round of budget changes through your process, validated the numbers, copy/pasted all the charts and graphs and you are printing the books. “I’m going to get home for dinner tonight!”, so you thought. Your next call is home telling your family you will be late again because you have another long night ahead of you. It doesn’t have to be this way. 

The reason I dreaded that call was because we didn’t have a clearly defined, connected process that allowed me to make changes quickly and flow them all the way through my system to produce the requisite output. Instead, I knew the pain that was about to ensue. I was going to cobble together my financials and hope that I didn’t miss anything (which I often did). Your goal should be to have a rock-solid process such that you can make changes quickly and then seamlessly push them through. Easier said than done, yes. But, I know you can do it. We’re here to help.

Lack of integrated functionality within your legacy applications

Many times, we have disparate systems and processes across business units, geographies and corporate functions. The concept of a single source of the truth seems like a myth or fable. We may feel as if we are on a quest for fully integrated 3-statement reporting (P&L, BS, CF). The lack of integration is also a root cause for other items that I have discussed. Since our systems do not speak to each other, we export everything to Excel, The Great Aggregator. This leads to using offline schedules to generate reports which leads to a lack of data governance and control which leads to confusion at best and misdirection at worst. There are steps you can take today to improve this while you are working towards a longer-term solution.  Automation of certain items is easier than you think.

You do not have real-time, collaborative tools

Instant feedback is extremely important when timelines are tight and decision support is needed quickly. The pace of business today is so fast that collaboration is becoming a requirement. If you are still driving your forecast and budgeting process with Excel, you have an opportunity for improvement. Stop the proliferation of static Excel files that constantly get changed or broken. There are many tools that will allow you to become more collaborative. The answer to this doesn’t have to be the implementation of one of the planning, reporting, and analytics tools on the market today (although I highly suggest this route). I have seen collaboration accomplished with Google’s suite of products, Smartsheets, Box or other shared access products. The key is that you need a platform that allows you to be nimble and quickly react to changes on the ground. Enable each group to input their items and have them flow throughout the system so everyone sees the impact immediately and can approve or deny and create actions plan. Make sure to create a roadmap that charts your path from where you are today to that future state where you have a planning, reporting, and analytics solution that can provide instant gratification, feedback, and ease of use. 

Did any of these signs strike a chord with you? Most of us probably see these in everyone else’s process around us.  But guess what, others may these signs in your planning and reporting process. As we approach the start of next year’s budget season, set aside some time to question the steps you are about to take. Perhaps it is time to rethink your process.

Read more posts in Brian’s FP&A Done Right Series:

FP&A Done Right: Creating a Shared Vision Between Finance and IT

Why, Why, Why, Why? – The Hallmark of a Great FP&A Practitioner

Guest blog post from Adaptive Insights: How to Improve Cross-Team Collaboration

Home » Financial Performance Management » Page 30

Filed Under: FP&A Done Right Tagged With: Analytics, Financial Performance Management, FP&A

Revelwood Partners Adaptive Insights and IBM Earn High Ratings in BPM Partners’ BPM Pulse Survey

June 27, 2019 by Lisa Minneci Leave a Comment

Awards & Recognition

BPM Partners’ BPM Pulse Survey is in its 16th year, and yet again Revelwood partners Adaptive Insights and IBM have both earned high ratings in the annual survey of business performance management vendors.

General Trends in the Business Performance Management Market

According to Craig Schiff of BPM Partners, the survey revealed that users of performance management systems are primarily looking for three main features when they evaluate BPM solutions:

  • Ease of use;
  • Performance and scalability; and
  • A single user interface for budget owners outside of finance.

Additionally, Schiff mentioned that users strongly prefer vendors who have integrations with existing systems.

This year’s survey revealed a very interesting key trend: the “rebirth” of dashboards. Users reported that they’ve added dashboards on to most projects, that dashboards are used to deliver analytics, that they have a desire for interactive, drillable dashboards, and that in some cases they have multiple dashboards throughout a solution for specific use cases.

The BPM Pulse survey also found that users have a focus on granular profitability analysis. That focus, however, is different based on industry. Currently the pre-packaged options are limited. It also creates system challenges around volume and performance.

Adaptive Insights’ Rating in the BPM Pulse Survey

Adaptive was named a top-rated vendor in 2019 for the key category of budgeting/planning functionality. The company had an overall score of 4.31 (out of 5) and was cited for its extended market reach, AI capabilities and anomaly detection. Adaptive Insights was also recognized for its comprehensive solution, integrations, data visualization, operational analytics, collaboration, and clean/intuitive user interface.  The survey found that Adaptive Insights was most often selected for its product flexibility. Its highest functional rating in the BPM Pulse survey was for budgeting/planning.

BPM Partners BPM Pulse Survey Adaptive Insights Ratings

IBM’s Rating in the BPM Pulse Survey

IBM was named a top-rated vendor for Planning Analytics’ budgeting/planning functionality as well. The company had an overall score of 4.28. The webinar for the BPM Pulse Survey cited the company’s business performance management offerings’ latest enhancements as including “cloud-based administration and modeling, seamless switching between web and Excel views, and more. Users selected Planning Analytics for its product flexibility and its highest functional rating in the BPM Pulse survey was for reporting.

BPM Partners BPM Pulse Survey IBM and IBM Planning Analytics Ratings

 Watch BPM Partners’ webinar – in conjunction with Industry Week – here.

Home » Financial Performance Management » Page 30

Filed Under: Awards & Recognition Tagged With: Adaptive Insights, Budgeting, Budgeting Planning & Forecasting, Financial Performance Management, IBM Planning Analytics, Planning & Reporting, TM1

IBM Planning Analytics Tips & Tricks: Best Practices for Hierarchies

June 25, 2019 by Nina Inverso Leave a Comment

Tips & Tricks

Did you know IBM Planning Analytics hierarchies are used to see alternative data rollups in the same view? By default, all dimensions include a single hierarchy based on the original definition.

Creating multiple hierarchies in a dimension is initially disabled in Planning Analytics Workspace. The EnableNewHierarchyCreation parameter must be set to true in the server’s tm1s.cfg file to enable hierarchy creation. This is a static parameter, which means you will need to restart the server once you change the parameter value.

Hierarchies should be maintained via TurboIntegrator (TI) processes whenever possible. For example, when changes are made to the attribute that was originally used to create an attribute-based hierarchy, the associated hierarchy is not automatically updated. The user must delete and recreate the hierarchy to see the changes reflected in the model.

Hierarchies that have been created manually or via TI process can have any structure, while attribute-based hierarchies always have three levels: a total, the attribute values, and the leaves. A hierarchy must be maintained manually or via TI process if it is asymmetric, its elements belong to more than one parent, or it requires more than three levels.

IBM Planning Analytics, which TM1 is the engine for, is full of new features and functionality. Not sure where to start? Our team here at Revelwood can help. Contact us for more information at info@revelwood.com. And stay tuned for more Planning Analytics Tips & Tricks weekly in our Knowledge Center and in upcoming newsletters!

Read more IBM Planning Analytics Tips & Tricks Blogs:

IBM Planning Analytics Tips & Tricks: The Benefits of Using Hierarchies

IBM Planning Analytics Tips & Tricks: Creating a Simple Dashboard in Planning Analytics Workspace

IBM Planning Analytics Tips & Tricks: The Ranked Report

Need more guidance? Take a look at our IBM Planning Analytics Training services and our Customer Care Program.

Home » Financial Performance Management » Page 30

Filed Under: IBM Planning Analytics Tips & Tricks Tagged With: Budgeting, Budgeting Planning & Forecasting, Financial Performance Management, IBM Planning Analytics, Planning & Reporting, TM1

Adaptive Insights Earned Gartner Peer Insights Customers’ Choice Award for Best Cloud Financial Planning and Analysis Solutions of 2019

June 19, 2019 by Lisa Minneci Leave a Comment

Awards & Recognition

Adaptive Insights recently earned the Gartner Peer Insights Customers’ Choice Award for Best Cloud Financial Planning and Analysis Solutions of 2019 as reviewed by customers. Gartner Peer Insights is a “robust enterprise IT product and service review platform that hosts more than 165,000 verified customer reviews across 320 defined markets.”

Some of the highlights from the 166 verified reviews of Adaptive Insights include:

Better decision making, enabling efficient processes

 “This application allows our employees to track finances, budgets, sales, resources, and labor contribution. With its help, our company’s managers are able to collect divergent data, make various kinds of reports, build models, and make optimal business decisions.” – Quality assurance manager, services industry

“We replaced all manual forecasting from electronic datasheets with Adaptive, and now it is much more convenient to forecast, analyze, manage budgets and report for each individual department (profit, loss, balance sheets, capital expenditures, and others). With the help of KPIs and dashboards, we easily monitor the financial performance of a business from a real-time transaction system.” – Business system analyst, communications industry.

Facilitating FP&A changes

“It seems it was so recently when we were used to using Excel spreadsheets. But we had the inner desire to improve, so we are glad we moved to Adaptive Insights. This cloud solution offers a wide breadth of opportunities which are really helpful and even inspiring.” – Analyst, services industry

“Finally, we could structure our budgeting system thanks to Adaptive Insight … Now everything becomes clear for every manager.” –Finance analyst, retail industry.

“Adaptive Insights is an intuitive budgeting and planning tool that has helped us build out the FP&A team. Its Microsoft connector, OfficeConnect, has been key in building and automating reports to present to the executive leadership team.” – Financial analyst, manufacturing industry.

Data in real-time, reducing budgeting times

“My experience with the product has been splendid because it allows the organization to plan and collaboratively model the information that is handled in real time by obtaining a visibility of the performance metrics. In addition, you can access up-to-date analytics, reports and accelerate financial consolidation.” – Plant support engineering, manufacturing industry

“My experience with the product is extraordinary because it allows the organization to plan, model collaboratively, access analytics in real time, present accurate reports and accelerate financial consolidation. It has been effective in decision making, automation and analysis of budget processes, strategic planning, control and delivery of reports.” – Analyst, media industry

Read the full customer reviews on Adaptive Insights at Gartner Peer Insights.

Home » Financial Performance Management » Page 30

Filed Under: Awards & Recognition Tagged With: Adaptive Insights, Financial Performance Management

IBM Planning Analytics Tips & Tricks: How to Maintain a Hierarchy via a TurboIntegrator Process

June 18, 2019 by Revelwood Leave a Comment

Tips & Tricks

Did you know it is best practice to maintain a hierarchy in Planning Analytics via TurboIntegrator (TI) process whenever possible? There are five key functions that can be used to do so.

HierarchyExists(DimName, HierName)

HierarchyExists is used to determine whether a specific hierarchy already exists on the server. The first parameter is the name of the dimension that contains the hierarchy to check, and the second parameter is the name of the hierarchy to check.

HierarchyCreate(DimName, HierName)

HierarchyCreate is used to create a new hierarchy in an existing dimension. The first parameter is the name of the dimension in which to create the hierarchy, and the second parameter is the name of the hierarchy to create.

HierarchyDeleteAllElements(DimName, HierName)

HierarchyDeleteAllElements deletes all elements from a hierarchy. The first parameter is the name of the dimension in which the hierarchy exists, and the second parameter is the name of the hierarchy from which to delete all elements.

HierarchyElementInsert(DimName, HierName, InsertionPoint, ElName, ElType)

HierarchyElementInsert adds an element to a hierarchy. The first and second parameters are once again used to specify the names of the applicable dimension and hierarchy (respectively). The third parameter can be used to specify the element before which the new element will be inserted. If it’s left blank, the new element will be inserted at the end of the dimension. The fourth parameter is the name of the new element, and the fifth parameter is the element type. The letter N signifies a numeric element, the letter S signifies a string element, and the letter C signifies a consolidated element.

HierarchyElementComponentAdd(DimName, HierName, ConsolidatedElName, ElName, ElWeight)

HierarchyElementComponentAdd adds a child to a consolidated element. The first and second parameters are once again used to specify the names of the applicable dimension and hierarchy (respectively). The third parameter is the name of the parent or consolidated element, the fourth parameter is the name of the child element, and the fifth parameter is the weight of the child element in the consolidation.

The following code example is used to create the Delivery Format hierarchy in the Publication dimension of this server. The metadata section of the code could then use attribute values or information from the data source to determine where in the hierarchy to place each base level publication.

IBM Planning Analytics Tips & Tricks: How to maintain a hierarchy via a TurboIntegrator Process

The full list of hierarchy manipulation TI functions can be found here.

IBM Planning Analytics, which TM1 is the engine for, is full of new features and functionality. Not sure where to start? Our team here at Revelwood can help. Contact us for more information at info@revelwood.com. And stay tuned for more Planning Analytics Tips & Tricks weekly in our Knowledge Center and in upcoming newsletters!

Read more blog posts in the IBM Planning Analytics Tips & Tricks Series:

IBM Planning Analytics Tips & Tricks: The Benefits of Using Hierarchies

IBM Planning Analytics Tips & Tricks: Workarounds for Unsupported Excel Functions in TM1 Web

IBM Planning Analytics Tips & Tricks: Recaclulating Excel Worksheets

Need more help? Learn about our Customer Care options for IBM Planning Analytics & TM1 users. 

Home » Financial Performance Management » Page 30

Filed Under: IBM Planning Analytics Tips & Tricks Tagged With: Budgeting, Budgeting Planning & Forecasting, Financial Performance Management, IBM Planning Analytics, Planning & Reporting, TM1

FP&A Done Right: There Is Life After December – The Fixed Forecast Dilemma

June 14, 2019 by Brian Combs Leave a Comment

FP&A Done Right

While this may be an old concept, the Fixed Forecast Dilemma still holds true today. Not too long ago, this was a fairly arduous task, even if you wanted to undertake it. This is now primarily a mindset change because today’s planning, reporting and analytics systems make this task much easier than in the past. 

Artificial Wall

We create this disconnect between current year and next year – in our minds as well as in our systems. We spend the bulk of our time focused on our current calendar or fiscal year and create this artificial wall that is difficult to see beyond. When analyzing actions, we think in terms of how it impacts our Total Year period because that is the report deck I need to pull together once I finish my forecast. We don’t always think about how my actions today impact the out months. “That’s a budget problem, I’ll worry about that when I put that hat on,” I used to say.

Our systems are created to support this philosophy as well. We put our forecast and our plan in separate scenarios which makes the divide even deeper. This Year. Next Year. 

FP&A Done RIght: The Fixed Forecast Dilemma

As you know by now, I spent many years in FP&A in the car rental business. We initially used the standard January to December forecast period. We started with our annual budget. January was always a good month; there’s no way we were going to show a number different from the budget we just spent so much time on, so it was an easy ‘copy/paste’ job to our Current Estimate version. As the months and quarters progressed, we layered in the actuals and updated the remainder of the year. Nothing more, nothing less. This was a short-sighted process that led to increasingly limited visibility. It was as if we weren’t going to rent a single car on January 1st! Don’t get me wrong, I did enjoy the forecast more as the year progressed since I had one less period to create and analyze each month. Come the Aug/Sept timeframe, I actually got home at night before my wife and boys were asleep! The primary issue is that the calendar year construct focuses attention on the accounting year rather than the ongoing operational cycles which can be calendar agnostic. A continuous planning process pulls the two together.

Continuous Planning

Continuous planning cycles allow us to become more strategic in our thinking and give us a visual cue that our business is continuous and there is, indeed, life after December.  It links our operational and financial strategies and goals.  Start using your forecast as a legitimate roadmap which shows your current landscape rather than just a report that you plug back to the annual plan to avoid questions (I may have played that game once or twice…)

The basic idea is that we are always looking forward the same number of months/quarters. As this visual shows, we layer in the actuals but add another period at the end of our forecast timing. This is often referred to as a ‘drop…add’ planning cycle.

The Fixed Forecast Dilemma

This chart shows an 18-month forecast. Your time horizon and granularity (the level at which you forecast your accounts and locations) may be specific to your industry and should be based on the furthest point out that you have solid, actionable operational/finance visibility and needs. Several companies I have worked with use a simple rolling 12 forecast. I used an 18-month rolling forecast since that aligned with my lead times for our vehicle purchases. There are heavy capital-intensive industries which may have 30-year CapEx forecasts. If you are unsure, start with 12 or 18 months. One key benefit to an 18-month continuous planning cycle is that the first pass of your plan for the following year is completed at the beginning of Q3 this year.

Next Steps

You might be thinking, “Brian, there is no way I’m going to do 18 months of forecasting. It would take too long.” You may be right based on your current process. You should be thinking about driver-based forecasting at the same time. Focus on the key drivers of your business. Update the rates and drivers and let the system do the work. Also, start to question the granularity of your forecast. Do you really need to forecast every GL account or every store front, department, or business unit? We fool ourselves into thinking that more detail somehow equates to greater accuracy. I would argue it’s the exact opposite. Implement the continuous planning cycle along with these business process changes and you will not spend any more time on your forecast than you do today. But you will have gained more insight into the needs and expectations of your business.

Whatever you do, remember that January 1st follows December 31st every year. Don’t wait until the last minute to see what’s on the other side of the wall. 

Read more posts in Brian’s FP&A Done Right Series:

FP&A Done Right: Creating a Shared Vision Between Finance and IT

Why, Why, Why, Why? – The Hallmark of a Great FP&A Practitioner

Guest blog post from Adaptive Insights: How to Improve Cross-Team Collaboration

Home » Financial Performance Management » Page 30

Filed Under: FP&A Done Right Tagged With: Financial Performance Management, FP&A

  • « Go to Previous Page
  • Page 1
  • Interim pages omitted …
  • Page 28
  • Page 29
  • Page 30
  • Page 31
  • Page 32
  • Interim pages omitted …
  • Page 47
  • Go to Next Page »

Footer

Revelwood Overview

Revelwood helps finance organizations close, consolidate, plan, monitor and analyze business performance. As experts in solutions for the Office of Finance, we partner with best-in-breed software companies by applying best practices guidance and our pre-configured applications to help businesses achieve their full potential.

EXPERTISE

  • Workday Adaptive Planning
  • IBM Planning Analytics
  • BlackLine

ABOUT

  • Who We Are
  • What We Do
  • How We Help
  • How We Think
  • Privacy

CONNECT

World Headquarters

Florham Park, NJ | 201 984 3030

European Headquarters

London & Edinburgh | +44 (0)131 240 3866

Latin America Office

Miami, FL | 201 987 4198

Email
info@revelwood.com

Copyright © 2025 · Revelwood Inc. All rights reserved. Revelwood® and the Revelwood logo are registered marks of Revelwood Inc.