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
Date | Value | Name | Country |
1/1/2021 | 542 | Cost | US |
1/2/2021 | 125 | Cost | US |
1/3/2021 | 634 | Cost | US |
... (up to 31/12/2022 for example) | |||
1/1/2021 | 857 | Cost2 | US |
1/2/2021 | 523 | Cost2 | US |
1/3/2021 | 109 | Cost2 | US |
... ... (up to 31/12/2022 for example) |
I have a table with the date column, values, the name of the value and the country
I would like to build a table and slicers that shows the value of the selected month (e.g. 1/2/2021) and display 1) the original value in the table, 2) the variance of the value based on the previous month.
For example, in the slicer, the month is 1/2/2021, the value of Cost of 1/2/2021 will subtract the value of 1/1/2021 to display the variance. Subsequently, in the slicer, the month is 1/6/2021, the value of Cost of 1/6/2021 will subtract the value of 1/5/2021. I want to make it dynamic, values to be changed when different options are selected in the slicer. Is this possible?
Thank you!
Solved! Go to Solution.
Hi @Anonymous ,
I created a sample pbix file(see attachment) for you, please check whether that is what you want.
1. Create a single year dimension table as below(Do not create any relationship with your fact table)
2. Create a measure as below:
variance of years =
VAR _selyear =
SELECTEDVALUE ( 'Years'[Year] )
VAR _selcountry =
SELECTEDVALUE ( 'Table'[Country] )
VAR _curyear =
SELECTEDVALUE ( 'Table'[Year] )
VAR _selname =
SELECTEDVALUE ( 'Table'[Name] )
VAR _preyvalue =
CALCULATE (
SUM ( 'Table'[Value] ),
FILTER (
ALLSELECTED ( 'Table' ),
'Table'[Year] = _curyear - 1
&& 'Table'[Country] = _selcountry
&& 'Table'[Name] = _selname
)
)
RETURN
IF (
_curyear >= _selyear - 1
&& _curyear <= _selyear
&& NOT ( ISBLANK ( _preyvalue ) ),
SUM ( 'Table'[Value] ) - _preyvalue,
BLANK ()
)
If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards
@Anonymous , Assume this DD /MM format and you need a month before value. Use an independnet date table to select the date
Value =
var _max1 = maxx(allselected('Date1'), 'Date1'[Date])
var _max = date(year(_max1), month(_max1) -1, Day(_max1) )
return
calculate(Sum(Table[Value]), filter(Table, Table[Date]= _max))
@amitchandak thank you!
What if the criteria now is I want it to calculate the variance of 2022 and 2021. How do I do it?
Hi @Anonymous ,
I created a sample pbix file(see attachment) for you, please check whether that is what you want.
1. Create a single year dimension table as below(Do not create any relationship with your fact table)
2. Create a measure as below:
variance of years =
VAR _selyear =
SELECTEDVALUE ( 'Years'[Year] )
VAR _selcountry =
SELECTEDVALUE ( 'Table'[Country] )
VAR _curyear =
SELECTEDVALUE ( 'Table'[Year] )
VAR _selname =
SELECTEDVALUE ( 'Table'[Name] )
VAR _preyvalue =
CALCULATE (
SUM ( 'Table'[Value] ),
FILTER (
ALLSELECTED ( 'Table' ),
'Table'[Year] = _curyear - 1
&& 'Table'[Country] = _selcountry
&& 'Table'[Name] = _selname
)
)
RETURN
IF (
_curyear >= _selyear - 1
&& _curyear <= _selyear
&& NOT ( ISBLANK ( _preyvalue ) ),
SUM ( 'Table'[Value] ) - _preyvalue,
BLANK ()
)
If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards
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 |
---|---|
129 | |
90 | |
75 | |
58 | |
53 |
User | Count |
---|---|
200 | |
104 | |
101 | |
67 | |
55 |