Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi!
I´ve created this table containing all my my processes and corresponding factors. I want to use factors for each process beacuse when im forecasting i tend to see trends changing on process level.
So I´ve created my measure:
"ForeCastWithFactors = [Forecast] * CALCULATE(SUMX('ProcessFactors'; 'ProcessFactors'[ProcessFactor]))"
and row by row it works as expected, it increases the forecast by the factor (they are all 1.07 at the time)
However the problem is the total. its Obviously calculating the sum of all the factors x sum of forecast. and thus its not really usable in a bar chart for example.
Anyone know how to rewrite this so it works?
Solved! Go to Solution.
I guess it is this.
ForeCastWithFactors = SUMX('ProcessFactors'; [forecast] * ‘ProcessFactors'[ProcessFactor])
Maybe even this
ForeCastWithFactors = SUMX(values('ProcessFactors'[processfactor]); [forecast] * ‘ProcessFactors'[ProcessFactor])
I guess it is this.
ForeCastWithFactors = SUMX('ProcessFactors'; [forecast] * ‘ProcessFactors'[ProcessFactor])
Maybe even this
ForeCastWithFactors = SUMX(values('ProcessFactors'[processfactor]); [forecast] * ‘ProcessFactors'[ProcessFactor])
I cannot thank you enough, altough i feel very stupid for that simple sollution 🙂
Thanks again! SUMX('ProcessFactors'; [forecast] * ‘ProcessFactors'[ProcessFactor]) worked like a charm.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 36 | |
| 33 | |
| 32 | |
| 28 |
| User | Count |
|---|---|
| 129 | |
| 88 | |
| 79 | |
| 68 | |
| 63 |