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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
prashantvns
Frequent Visitor

Need help to filter data from table based on latest entry

Hi,

 

Refering "Existing Data table" basically this an auto test data where  on specific dates different machines "Partition Key"  shows the total number of test case "Count" being executed.

 

Current Problem : In any specific day when auto test is runned multiple times on same machine then we log the "TestRunID" and associated number of test case executed along with that RunID.  I need to show only one entry in reports based on the latest TestRunID. Example :  Please check the new data table where highlighted Red test need to be ignored or to be avoid in the reports. Currently when I plot in the reports it shows 2 times for both TestRunID.

 

 2017-07-24_1745.png

Please suggest me how to  avoid the lowest  TestRunID and keep highest for spefic dates and machine 

1 ACCEPTED SOLUTION

Hi @prashantvns,

Please use the following formula and get expected result.

New1 = FILTER('Existing','Existing'[TestRunID]=CALCULATE(MAX('Existing'[TestRunID]),ALLEXCEPT('Existing','Existing'[PartitionKey],'Existing'[TestRunTime])))


1.PNG

Best Regards,
Angelia

View solution in original post

4 REPLIES 4
v-huizhn-msft
Employee
Employee

Hi @prashantvns,


I create similar sample table as follows and get expected result.

1.PNG

Then click "New Table" under Modeling on Home page, type the formula.

New = SUMMARIZE('Existing','Existing'[PartitionKey],'Existing'[TestRunTime],"TestRunID",MAX('Existing'[TestRunID]),"Count",FIRSTNONBLANK('Existing'[Count],1))


Please see the expected result shown in the following screenshot.

2.PNG

Best Regards,
Angelia 

Thanks for your help but the solution you have given is not working fully 😞 and I still need  your help

 

2017-07-25_1005.png

 

If you see that the count for TestRunID(2) is 1308 but in your solution it come as 1302

to conclude the final row should be A-----7/17/2017------2-----1308.  

Thanks again and wating for your resposne 

 

 

 

Hi @prashantvns,

Please use the following formula and get expected result.

New1 = FILTER('Existing','Existing'[TestRunID]=CALCULATE(MAX('Existing'[TestRunID]),ALLEXCEPT('Existing','Existing'[PartitionKey],'Existing'[TestRunTime])))


1.PNG

Best Regards,
Angelia

Hi, 

 

Your solution worked but one more thing 🙂 Is it possible to execute this in Query view instead of Data model view.  I need to do this calculation in query view... 

 

Thanks

Prashant

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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