- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Actuals + Forecast Total
Hi,
I'm trying to get a formula when I can add together the actuals so far and then the forecast in one row. This formula nearly does what I want
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The problem with your total column is that when you evaluate [Enquiries] for the entire year it is not blank, and so it returns the value for [Enquiries]. You can get around that by doing a SUMX over the values of your year month column from the date table.
Enquiries & Budget =
SUMX (
SUMMARIZE ( 'Date', 'Date'[Year month], 'Date'[On Or After Current Month] ),
IF (
'Date'[On Or After Current Month] = TRUE,
[Enquiries Budget All SD],
[Enquiries]
)
)
The 'Date'[On Or After Current Month] column assumes a flag in your date table to show which months are either current month or in the future. This will then use the budget for those months and the enquiries for everything in the past.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The problem with your total column is that when you evaluate [Enquiries] for the entire year it is not blank, and so it returns the value for [Enquiries]. You can get around that by doing a SUMX over the values of your year month column from the date table.
Enquiries & Budget =
SUMX (
SUMMARIZE ( 'Date', 'Date'[Year month], 'Date'[On Or After Current Month] ),
IF (
'Date'[On Or After Current Month] = TRUE,
[Enquiries Budget All SD],
[Enquiries]
)
)
The 'Date'[On Or After Current Month] column assumes a flag in your date table to show which months are either current month or in the future. This will then use the budget for those months and the enquiries for everything in the past.

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
02-10-2025 10:09 AM | |||
03-26-2024 01:08 AM | |||
06-13-2024 12:26 AM | |||
11-07-2024 11:41 PM | |||
12-19-2023 05:59 AM |
User | Count |
---|---|
136 | |
107 | |
88 | |
58 | |
46 |