Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
I need to show the data Show Data in Matrix until last date sale in the last year . I need in this format, because is important at the analysis moment to compare years with only the last date of sales.
Solved! Go to Solution.
Hi, @mrbajana
Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.
Table:
You may create a measure as below.
Visual Control =
var m =
CALCULATE(
MAX('Table'[Date]),
FILTER(
ALL('Table'),
'Table'[Month]=MAX('Table'[Month])
)
)
var d =
DATE(MAX('Table'[Year]),MONTH(m),DAY(m))
var x = MAX('Table'[Date])
return
IF(
ISINSCOPE('Table'[Day]),
IF(
x<=d,
1,0
),
1
)
Then you need to put the measure in the visual level filter to display the result.
Best Regards
Allan
If this post helps,then consider Accepting it as the solution to help other members find it faster.
Hi, @mrbajana
Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.
Table:
You may create a measure as below.
Visual Control =
var m =
CALCULATE(
MAX('Table'[Date]),
FILTER(
ALL('Table'),
'Table'[Month]=MAX('Table'[Month])
)
)
var d =
DATE(MAX('Table'[Year]),MONTH(m),DAY(m))
var x = MAX('Table'[Date])
return
IF(
ISINSCOPE('Table'[Day]),
IF(
x<=d,
1,0
),
1
)
Then you need to put the measure in the visual level filter to display the result.
Best Regards
Allan
If this post helps,then consider Accepting it as the solution to help other members find it faster.
@mrbajana , In case you are using date table. Assumed you current measure is measure
new measure =
var _max = format(maxx(allselected(sales), sales[sales date]), "MMDD")
return
calculate([measure], filter(Date, format(Date[Date],, "MMDD") <=_max))
not using sales table
new measure =
var _max = format(maxx(allselected(sales), sales[sales date]), "MMDD")
return
calculate([measure], filter(sales, format(sales[sales date],, "MMDD") <=_max))