Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hello,
Currently I have a table ("Projects") with the following values
I am interesting in knowing the effort per each day of the year, so I have created another table ("Calendar") with the following values
"Date" column is calculated with the following formula
Calendar = CALENDAR(DATE(2022,01,01),DATE(2022,11,01))
"Number of projects" with the following formula:
Number of projects = COUNTROWS(
FILTER(Projects,Projects[Start Date]<='Calendar'[Date] && Projects[Finish Date]>='Calendar'[Date]))
Effort = CALCULATE(
SUM(Projects[Effort per day]),Projects[Start Date]<='Calendar'[Date],Projects[Finish Date]>='Calendar'[Date])
Solved! Go to Solution.
@Anonymous
Can you try this way?
Effort =
SUMX (
FILTER (
Projects,
Projects[Start Date] <= 'Calendar'[Date]
&& Projects[Finish Date] >= 'Calendar'[Date]
),
Projects[Effort per day]
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Hi,
For values which last a certain amount of time you can use the following DAX pattern:
Proud to be a Super User!
Hello,
I think this is a Measure, and my idea was adding a new column. I am not able to put this in a column.
Thanks anyway
@Anonymous
Can you try this way?
Effort =
SUMX (
FILTER (
Projects,
Projects[Start Date] <= 'Calendar'[Date]
&& Projects[Finish Date] >= 'Calendar'[Date]
),
Projects[Effort per day]
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Thanks! It is correclty working
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
11 | |
9 | |
8 | |
8 | |
7 |
User | Count |
---|---|
14 | |
12 | |
11 | |
10 | |
9 |