March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I want to calculate a new monthly sales target based on the sales achieved year to date vs the annual target, divided by the number of months left in the year.
My targets are in a separate table to my sales.
Targets table name: Targetsales
Sales table name: Orders
I have successfully created a measure for the Year To Date Target by using the following formula to multiple the monthly sales target by the number of months passed (based on today's date):
SALES TARGET YTD = Targetsales[TARGET_VALUE_MONTHLY] * MONTH(TODAY())
I have also created a measure to calculate the difference to target year to date, using the following:
YTD TARGET DIFF = CALCULATE(SUM(Orders[SALES]) - CALCULATE(SUM(Targetsales[SALES TARGET YTD])))
I now want to calculate the new monthly sales target, based on the YTD TARGET DIFF divided by the number of months remaining. I'm not sure whether to reference the other measures in the formula to achieve this, or if I can do it in one formula - for example:
NEW MONTHLY TARGET = Targetsales[YTD TARGET DIFF] - months remaining in current year
or
NEW MONTHLY TARGET = CALCULATE(SUM(Orders[SALES]) - CALCULATE(SUM(Targetsales[SALES TARGET YTD])) / months remaining in current year)
Please could someone help?
p.s. I'm new to measures and columns and don't know if there are limitations with using multiple measures or not.
Solved! Go to Solution.
Hi @jasminwing. It looks like you're off to a good start. To help with figuring out the right approach, you can probably simplify some of your existing measures. For example, your YTD TARGET DIFF measure should do the same thing written like this:
YTD TARGET DIFF = SUM(Orders[SALES]) - [SALES TARGET YTD]
The CALCULATE function is used to modify how something is calculated by manipulating the filters applied to the calculation. If you're not using the second and other optional arguments, it's probably not needed, so you can take it off of the SUM(Orders[SALES]) part.
And since you've already defined SALES TARGET YTD as a measure, you don't have to do any recalculating on it. You don't even have to reference the table name for a measure; just use the measure name in [brackets]. This makes for great building blocks in future measures. If you already have a TOTAL SALES measure, you could add that as a building block as well:
TOTAL SALES = SUM(Orders[Sales]) YTD TARGET DIFF = [TOTAL SALES] - [SALES TARGET YTD]
For your NEW MONTHLY TARGET, you can then use:
NEW MONTHLY TARGET = [YTD TARGET DIFF] / (12 - MONTH(TODAY()))
Hi @jasminwing. It looks like you're off to a good start. To help with figuring out the right approach, you can probably simplify some of your existing measures. For example, your YTD TARGET DIFF measure should do the same thing written like this:
YTD TARGET DIFF = SUM(Orders[SALES]) - [SALES TARGET YTD]
The CALCULATE function is used to modify how something is calculated by manipulating the filters applied to the calculation. If you're not using the second and other optional arguments, it's probably not needed, so you can take it off of the SUM(Orders[SALES]) part.
And since you've already defined SALES TARGET YTD as a measure, you don't have to do any recalculating on it. You don't even have to reference the table name for a measure; just use the measure name in [brackets]. This makes for great building blocks in future measures. If you already have a TOTAL SALES measure, you could add that as a building block as well:
TOTAL SALES = SUM(Orders[Sales]) YTD TARGET DIFF = [TOTAL SALES] - [SALES TARGET YTD]
For your NEW MONTHLY TARGET, you can then use:
NEW MONTHLY TARGET = [YTD TARGET DIFF] / (12 - MONTH(TODAY()))
Hi @KGrice
Such a simple fix! Thank you so much, this worked perfectly.
Thank you also for the advice regarding CALCALATE and measures.
Jasmin
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
122 | |
98 | |
95 | |
83 | |
50 |
User | Count |
---|---|
205 | |
160 | |
93 | |
87 | |
73 |