Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register 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.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
89 | |
86 | |
82 | |
64 | |
49 |
User | Count |
---|---|
124 | |
110 | |
88 | |
68 | |
66 |