Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
I have report1 which has some report count and everyday Data gets refreshed and the count also gets refreshed.datasourcebis some excel Data,
I have another report2 which has sharepoint list and it has below rows in the report
Date ponumber status
Jan1 199 noaction
Jan2 199 noaction
Jan3 200 Completed
So now I need to bring the daily count into new report
So new report looks like below//we are combining both the reports to bring below structure
Report3 which is new report
Date Total ponumber newcount completed noaction
Kindly suggest
Solved! Go to Solution.
Hi @bzeeblitz Could you follow these please
Load Data:
Transform Data:
Merge Queries:
Add Measures:
COUNTROWS('Report2')
SUM('Report1'[CountColumn])
COUNTROWS(FILTER('Report2', [Status] = "Completed"))
COUNTROWS(FILTER('Report2', [Status] = "NoAction"))
Build Report:
Create a table visual with Date, Total PONumber, New Count, Completed, and No Action.
Refresh:
Hi @bzeeblitz Could you follow these please
Load Data:
Transform Data:
Merge Queries:
Add Measures:
COUNTROWS('Report2')
SUM('Report1'[CountColumn])
COUNTROWS(FILTER('Report2', [Status] = "Completed"))
COUNTROWS(FILTER('Report2', [Status] = "NoAction"))
Build Report:
Create a table visual with Date, Total PONumber, New Count, Completed, and No Action.
Refresh:
Actually existing power bi we have created this formula in the visualization report so that's the count we need to take from that dashboard
Bridgetable=Filter(Distinct('po[item:#]),Not(Isblank('po'[Item:#])))
I already developed report for report1 which is fetching data from multiple tabls from excel which was stored in SharePoint folder and next SharePoint list I added into the same power bi existing report so sharepoint list data is stored as table and visualization I'm trying to do for this SharePoint list data so now I'm creating measure for complete but I'm getting error fetching data for this visual. Kindly help
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.