Forum Discussion
Variances between columns
- Anonymous8 years ago
Ok so that tells me that for each ForecastMonth, the First and Last Date are coming back with the same date. On the brightside, that suggests that the formula overall is working. Its now a matter of understanding why, on a row by row context, we are only seeing a single Submission Month date.
Yep was already testing in that way
both FirstForecast and LastForecast are producing the same numbers (hence the zeros).
Here is a copy of the visualisation with the return just being the LastForecast. Note in the submission filter in this example i have selected July 2017 and November 2017
Sorry yhat last visual was the zeros I was referring to... Here is with just returning LastForecast
- Anonymous8 years agoNot applicable
Ok so that tells me that for each ForecastMonth, the First and Last Date are coming back with the same date. On the brightside, that suggests that the formula overall is working. Its now a matter of understanding why, on a row by row context, we are only seeing a single Submission Month date.
- Anonymous8 years agoNot applicable
Think i got it working... just re typed the LASTDATE function and it worked. Must of been a typo somewhere
- Anonymous8 years agoNot applicable
Can I ask another related question. I now have the measures working but due to the set up the variances measure I am having to put these measures on a separate visual to the forecasts (see screenshot)
You can see I have a matrix displaying my July and October forecast submissions and I have a second visual doing the variance between the 2 forecasts (per per solution given for revenue I just replicated for EBIT and Margin %). This vall works fine but ideally I would be better on one visual. Can you think of a possible way?
- Anonymous8 years agoNot applicable
I feel like you can by using ALLSELECTED and potentially using another variable to remember the forecast month row context which i'm expecting will be lost when ALLSELECTED is used.
To make use of ALLSELECTED, it would look something like:
LastForecast = CALCULATE( sum('DPLImportPBI'[Forecast Revenue]), ALLSELECTED('DPLImportPBI'), 'DPLImportPBI'[SubmissionType] = "Rolling Forecast", 'DPLImportPBI'[Submission Month] = EndDate )I'm expecting if you use the above as is, your forecast month row context could be lost. If thats the case, just add a new variable in your formula with LASTDATE and that column, then put it into the calculate formula as another filter condition along with the 3 in the above.
- Anonymous8 years agoNot applicable
Sorry this doesn't achieve what I'm looking for and maybe I didn't explain correctly.
For started the ALLSELECTED option pulls in all revenuve for all forecasts and I definitley do not want that.
The main issue I have it that the matrix visual has a 2 tiered colum heading. It has July 2017 and November 2017 (becasue these are the 2 submission months I have chosen in my slicer. Below these are the column headers for my measues (RF Revenue, RF EBIT & RF Margin).
When I add the varaince measures it tries to give a variance for the July forecast and also a varaince for the November forecast. I do not want this... I want one varaince comparing the 2 forecast. This works perfectly ok as a seperate visual but not if I try and add it to the existing visual
- Anonymous8 years agoNot applicable
ALLSELECTED is likely the avenue you'll need to persist with, but it won't be enough on its own. As you have correctly pointed out, it will strip extra context away. You can first record this context into additional variables and add back into your calculate statement. It will just simply take some trial and error for you to get right.
Really comes down to the choice of whether the 2 visuals are going to be enough or whether you wish to spend the time and effort in adding additional complexity in order to squeeze it into the single visual. Its a bit hard to solve from afar so its one of those problems you will need to pick up and run with.