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
Hi
I have a table like this
Date | Ticket | KPI | Type | Value |
01/01/2020 | TICK01 | KPI01 | Recurring | 10 |
01/02/2020 | TICK01 | KPI01 | Recurring | 8 |
01/02/2020 | TICK01 | KPI02 | No Recurring | 7 |
01/03/2020 | TICK01 | KPI02 | No Recurring | 6 |
01/03/2020 | TICK02 | KPI03 | Recurring | 12 |
01/04/2020 | TICK02 | KPI03 | Recurring | 13 |
I have a slicer to select month and year and I select multiple month.
I would like to have a measure that repeat the sum of the min month on each row. For example if I select February & 2020 I should have 15 on all rows (selected).
How can I do this ?
Solved! Go to Solution.
Hi,
You may download my PBI file from here.
Hope this helps.
Hi,
You may download my PBI file from here.
Hope this helps.
you can try this
Measure 2 =
var _mindate=min('Table 2'[Date])
var _minmonth=month(_mindate)
var _minyear=year(_mindate)
return sumx(FILTER(ALL('Table'),year('Table'[Date])=_minyear&&month('Table'[Date])=_minmonth),[measure])
don't create relationship between fact table and date table.
pls see the attachment below
Proud to be a Super User!
Hi freginier,
Could you show the output you want?
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 |
---|---|
134 | |
91 | |
89 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
72 | |
68 |