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
Anonymous
Not applicable

How to create a measure from a streaming dataset in Power BI ?

Hi Guys,

 

Newbie here, is there anyone here who can help me to get the last task based on the date using a measure and show it in a card ?

 

ds.PNG

 

 

 

 

My datasource is a streaming dataset feeding data from power apps.

 

OR

 

If its possible to create a URL filter that will show the same output. That would be match better as I want to show the last task entered by the user thats been using the app.

 

Thank you so much guys!

2 ACCEPTED SOLUTIONS
v-lid-msft
Community Support
Community Support

Hi @Anonymous ,

 

After we enable the historic data analysis of streaming dataset, we can create measure in Power BI Desktop.

 

Measure LastDate =
CALCULATE (
    MAX ( 'Table'[Task] ),
    FILTER (
        ALLSELECTED ( 'Table' ),
        'Table'[Date] = CALCULATE ( MAX ( 'Table'[Date] ), ALLSELECTED ( 'Table' ) )
    )
)

 

12.jpg

11.jpg

 


Best regards,

 

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

Hi @Anonymous ,

 

Sorry for that we forgot to mention how to connection this dataset from Desktop, we do not need to download pbix, we can find the dataset connector in Get Data. Then you can search for the streaming dataset

 

13.jpg

 


Best regards,

 

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

5 REPLIES 5
v-lid-msft
Community Support
Community Support

Hi @Anonymous ,

 

After we enable the historic data analysis of streaming dataset, we can create measure in Power BI Desktop.

 

Measure LastDate =
CALCULATE (
    MAX ( 'Table'[Task] ),
    FILTER (
        ALLSELECTED ( 'Table' ),
        'Table'[Date] = CALCULATE ( MAX ( 'Table'[Date] ), ALLSELECTED ( 'Table' ) )
    )
)

 

12.jpg

11.jpg

 


Best regards,

 

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Also, the download report is disabled.

Hi @Anonymous ,

 

Sorry for that we forgot to mention how to connection this dataset from Desktop, we do not need to download pbix, we can find the dataset connector in Get Data. Then you can search for the streaming dataset

 

13.jpg

 


Best regards,

 

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Hi Dong,

 

Thanks for this guys, this will help me with most of my projects in the future.

 

Thank you so much!

 

 

Anonymous
Not applicable

Hi V,

 

 

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.