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
stefan_uk
New Member

Real Time data to keep only latest version of each record

Hi,

 

We like the feature of feeding PowerBi from azure stream analytics and showting the data in real time, as well as keeping the history. 

 

Is it possible to configure PowerBi to only keep the latest version of a record, identified by key? 

 

We send regular updates of our records in real time to PowerBi and with every new update, the old data becomes redundant. 

 

This old redundant data is however visibile in all reports and result in incorrect view. 

 

What's the best way to go around this?

 

Thanks,

Stefan

3 REPLIES 3
v-haibl-msft
Microsoft Employee
Microsoft Employee

@stefan_uk

 

If your data are grouped by date and time, I think you can add a filter to your report in Power BI. So that you can filter the data to make it show the latest records. You can also take a look at this article which provide the solution on stream analytics side. Hope it helps.

 

Best Regards,

Herbert

Hi Herbert,

 

the data is not groupped by datatime, it's groupped by a custom key (RecordKey in the example below).

 

Example input data into stream analytics

 

Time         RecordKey   RecordValue

T                      r1                  10

T                      r2                  11

T+1                 r1                   12

T+2                 r1                   13

T+3                 r2                   14

T+4                 r1                   15

 

Lets assume this is how data arrives to stream analytics. For rows with same time, the records arrive together in an array.

 

The requirement is at any time to show latest 'RecordValue' for each 'RecordKey' in PowerBI, in real time

 

Expected values displayed in PowerBI

 

Time     Values

T           r1: 10, r2: 11

T+1      r1: 12, r2: 11

T+2      r1:13,  r2: 11

T+3      r1: 13, r2: 14

T+4      r1: 15, r2: 14

 

Can time window in stream analytics solve this problem, and keep data coming real time?

E.g. configuring a 'day' time window in stream analytics - is this going to calculte the aggregated view for all records for each update (T, T+1, T+2,...) and send to PowerBI? That would suggest stream analytics holds all the records throughout the time window.

 

Can we then configure PowerBI to always only display the latest records? 

 

Thanks,

Stefan

@stefan_uk

 

As far as I know, Power BI Service will always get all records form your data source. You cannot control it to only get the latest records. We can find a similar idea here which has already been voted.

So I think you can do something on the ASA side to control the output which sent to Power BI Service. I found this document and maybe you can do it with SQL query in ASA. If you have problems with ASA side, you can ask for help in the ASA forums.

 

Best Regards,

Herbert

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

Check out the September 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

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

Sept NL Carousel

Fabric Community Update - September 2024

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

Top Solution Authors