Forum Discussion
Difference between the min and Max Value.
- Anonymous7 years ago
Step 1: Add a calculated column "MonthNumber"
MonthNumber = SWITCH([Month], "Jan", 1, "Feb", 2, "Mar", 3, "Apri", 4, "May", 5, "Jun", 6, "Jul", 7, "Aug", 8, "Sep", 9, "Oct", 10, "Nov", 11, "Dec", 12, 0 )
Define 4 measures (Not all of them are necessary. You can directly write the final measure by combining the formula into one.
Measure 1: Initial Figure
InitialFigure = CALCULATE ( SUM ( Table1[Value] ), FILTER ( Table1, Table1[MonthNumber] = MIN ( Table1[MonthNumber] ) ) )Measure 2: Final Figure
FinalFigure = CALCULATE ( SUM ( Table1[Value] ), FILTER ( Table1, Table1[MonthNumber] = MAX ( Table1[MonthNumber] ) ) )Measure 3: Difference
Difference = [FinalFigure] - [InitialFigure]
Measure 4: Trend
Trend = if([Difference]<0,"Decrease",IF([Difference]=0,"No Change","Increased"))
Now based on your month selection, these measures will give you the results.
Disclaimer: In the SWITCH() function, I have assigned 1 for January, 2 for February and so on... If you are following a financial year calendar like Apr to Mar, then you will have to assign 1 for Apr, 2 May, etc... and 10 for Jan, 11 for Feb, and 12 for Mar. Only then the beginning and ending period will be calculated correctly.
- 7 years ago
Hi Anonymous
Attached sample file for your reference.It seems sreenathv's workaround is work for you.
Regards,
Hello, I know a way to achieve this but it is perhaps not the smartest way.
1. Instead of your NUMBER and MONTH column, I would add a DATE column using real date format (e.g. 2012-06-01)
2. add a measure:
- Anonymous7 years agoNot applicable
Hi Cynwaa,
Thanks for your reply. Still getting the below error "Can't load the data for the visual".
Regards,
Suresh.
- v-cherch-msft7 years ago
Microsoft Employee
Hi Anonymous
Attached sample file for your reference.It seems sreenathv's workaround is work for you.
Regards,