Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Itemnumber. Date. Status
1. 3/15/2025. Notstarted
2. 3/14/2025. Notstarted
3. 3/14/2025. Completed
Expected output
I need to build table visuals in the below manner based on date
Date. Itemnumber. Notstarted Completed
3/15/2025. 1. 1. 0
3/14/2015. 2. 1. 0
Solved! Go to Solution.
Hi @bzeeblitz,
Please create the following measures:
You can order your table by Date Desc
If my answer fullfil your question, plase flag it as solution
Hi @bzeeblitz please check this
NotStartedCount =
CALCULATE(
COUNT(TaskTable[ItemNumber]),
TaskTable[Status] = "Notstarted"
)
CompletedCount =
CALCULATE(
COUNT(TaskTable[ItemNumber]),
TaskTable[Status] = "Completed"
)
But we need to group by date for those status column
List1
Itemnumber date
List2
Itemnumber date status
So the measure you given that shows count of status but not the date wise count of status
why we don't display itemnumber 3 ?
Proud to be a Super User!
We can display I just showed sample data that's it, however we got to show the entire data
Hey @ryan_mayu, I think he wants them grouped by Date and count them.
At least this is how I interpreted it.
Yes I want to group by date from two different lists and then show report
List1
Date. Itemnumber
List2
Date itemnumber. Status
So when I group by date then I need to show below columns
Final result
Date itemnumber status
Then please feel free to review my prevuous comment
Thanks,but when I click the each status I would need to the Item number that's is not started,Completed So on from list2,kindly suggest.
Ok I would test and let you know
Hi @bzeeblitz,
Please create the following measures:
You can order your table by Date Desc
If my answer fullfil your question, plase flag it as solution
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 52 | |
| 50 | |
| 34 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 92 | |
| 77 | |
| 41 | |
| 26 | |
| 25 |