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
Thanks in anticpation... Newbie alert....
I have a field X which is linked to a Date. Presently I have no Date Filters on the table so it average the full data set.
What i would like to show is the following in the Table
Product A - X(Over full range) X - Past 8 weeks X - Past 4 weeks X - Past weeks.
I can create the individual cards but would like the detail that sits behind it.
Thanks
Andy
Solved! Go to Solution.
Hey @Spudduk ,
first create a measure for the total X:
X(Over full range) = SUM(myTable[Sales Amount])
And then you can create a measure that will filter on the last 8 weeks:
X - Past 8 weeks =
CALCULATE(
[X(Over full range)],
DATESINPERIOD(
'myDateTable'[Date],
MAX( 'myDateTable'[Date] ),
-56,
DAY
)
)
Past 4 weeks:
X - Past 4 weeks =
CALCULATE(
[X(Over full range)],
DATESINPERIOD(
'myDateTable'[Date],
MAX( 'myDateTable'[Date] ),
-28,
DAY
)
)
And past week:
X - Past week =
CALCULATE(
[X(Over full range)],
DATESINPERIOD(
'myDateTable'[Date],
MAX( 'myDateTable'[Date] ),
-7,
DAY
)
)
If you provide sample data it would be easier to give you a working code.
Hey @Spudduk ,
first create a measure for the total X:
X(Over full range) = SUM(myTable[Sales Amount])
And then you can create a measure that will filter on the last 8 weeks:
X - Past 8 weeks =
CALCULATE(
[X(Over full range)],
DATESINPERIOD(
'myDateTable'[Date],
MAX( 'myDateTable'[Date] ),
-56,
DAY
)
)
Past 4 weeks:
X - Past 4 weeks =
CALCULATE(
[X(Over full range)],
DATESINPERIOD(
'myDateTable'[Date],
MAX( 'myDateTable'[Date] ),
-28,
DAY
)
)
And past week:
X - Past week =
CALCULATE(
[X(Over full range)],
DATESINPERIOD(
'myDateTable'[Date],
MAX( 'myDateTable'[Date] ),
-7,
DAY
)
)
If you provide sample data it would be easier to give you a working code.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
82 | |
69 | |
53 | |
44 |
User | Count |
---|---|
202 | |
106 | |
100 | |
64 | |
56 |