Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
mrbajana
Helper III
Helper III

Show Data in Matrix until last date sale

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.

 

2020-11-10_13h28_01.png

1 ACCEPTED SOLUTION
v-alq-msft
Community Support
Community Support

Hi, @mrbajana 

 

Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.

Table:

c1.png

 

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.

c2.png

 

Best Regards

Allan

 

If this post helps,then consider Accepting it as the solution to help other members find it faster.

View solution in original post

2 REPLIES 2
v-alq-msft
Community Support
Community Support

Hi, @mrbajana 

 

Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.

Table:

c1.png

 

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.

c2.png

 

Best Regards

Allan

 

If this post helps,then consider Accepting it as the solution to help other members find it faster.

amitchandak
Super User
Super User

@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))

 

Helpful resources

Announcements
September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Top Solution Authors