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

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

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

 

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Feb2025 Sticker Challenge

Join our Community Sticker Challenge 2025

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

Jan NL Carousel

Fabric Community Update - January 2025

Find out what's new and trending in the Fabric community.