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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
jdw_msft
Frequent Visitor

Showing old existing/latest data until there's a new data uploaded

Hello everyone, i have problem to show any data that appeared on July 22nd and July 30th. How to add a function that can show existing data in date slicer selection (like if on July 23rd until July 29th there's no data uploaded, data from July 22nd still shown). Until new data uploaded, only latest data shown. Is there any DAX that can i implement? like creating ins_true tabe colum with TRUE/ FALSE boolean data type or anything else?

 

Thanks.

 

PS: the "issue_progress" is a Text/string data type

 

Here's the July 22nd dataHere's the July 22nd data

 

Here's the July 30th dataHere's the July 30th data

 

Data is blank if it selected July 29thData is blank if it selected July 29th

 

1 ACCEPTED SOLUTION

Hi,

Sorry that I do not fully understand, but please check the below picture and the attached pbix file.

 

Jihwan_Kim_0-1723440207597.png

 

 


If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

View solution in original post

5 REPLIES 5
jdw_msft
Frequent Visitor

Thank you for your assistance, it works like a charm

jdw_msft
Frequent Visitor

This is good, but the issues_progress is a text/string data type. You can fill with any text content

Jihwan_Kim
Super User
Super User

Hi,

Please check the below picture and the attached pbix file.

One of ways is to create a measure and put it into the visual level filter pane.

 

Jihwan_Kim_1-1723434661191.png

 

 

Jihwan_Kim_0-1723434638139.png

 

last non blank select: = 
VAR _DateSelect =
    MAX ( 'calendar'[Date] )
VAR _lastnonblankdate =
    LASTNONBLANK (
        FILTER ( ALL ( data[upload_date] ), data[upload_date] <= _DateSelect ),
        MAX ( data[issues_progress] )
    )
RETURN
    INT ( MAX ( data[upload_date] ) = _lastnonblankdate )

 


If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

Thank you @Jihwan_Kim for the first solution, but what if the data are like this? Assuming if the data is text onlyScreenshot 2024-08-12 120941.png

Hi,

Sorry that I do not fully understand, but please check the below picture and the attached pbix file.

 

Jihwan_Kim_0-1723440207597.png

 

 


If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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