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! Request now
Hi,
Hope someone can help
I have 2 tables;
1. Table1 holding dates
2. Table2 holding orders
I want to visualize the amount of open orders through time. Meaning,
Table 2 holds three columns, OrderNr, StartDate and EndDate.
I want to get the amount of records from table 2 where StartDate <= date in table1 and EndDate <= date in table1. So that I can visualize the open workload at any give time interval.
Please help.
Solved! Go to Solution.
Create a measure (or calculated column in Dates table): like this:
OrderCount = CALCULATE(COUNT(Orders[OrderNo]),FILTER(RELATEDTABLE(Orders),Orders[StartDate]<='Calendar'[Date] && Orders[EndDate]>='Calendar'[Date]))
Create a measure (or calculated column in Dates table): like this:
OrderCount = CALCULATE(COUNT(Orders[OrderNo]),FILTER(RELATEDTABLE(Orders),Orders[StartDate]<='Calendar'[Date] && Orders[EndDate]>='Calendar'[Date]))
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.