Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I am new to DAX and appreciate your patience if this is a mundane question. Thank you in advance.
I'm writing two measures, one to filter for projects that were overdue when completed, and one to filter for projects completed before their deadline. These measures will be used to create a stacked column chart of projects completed each quarter throughout the year.
I will use the example of overdue projects. This is my measure:
OverdueProjects =
FILTER(Projects,
Projects[ProjectStatus] = "Done"
&& Projects[TimeDiff] < 0
)
I get the error "The expression refers to multiple columns. Multiple columns cannot be converted to a scalar value."
In this example, Projects[TimeDiff] refers to another measure that is calculating the difference between the promised execution time for the project, and the actual execution time, so if TimeDiff is negative, it indicates the project is late. I'm not sure if referring to another measure might be what is causing the issue.
Code to evaluate TimeDiff:
Time Promised =
--Time between date created and promise date
CALCULATE(
INT(
SUMX(Projects, Projects[PromiseDate] - Projects[StartDate])
),
Projects[ProjectStatus] = "Done"
&& Projects[PromiseDate] <> BLANK()
)
Time Delivered =
-- Time between date created and date completed
CALCULATE(
INT(
SUMX(Projects, Projects[DoneDate] - Projects[StartDate])
),
Projects[ProjectStatus] = "Done"
)
TimeDiff = [Time Promised] - [Time Delivered]
Solved! Go to Solution.
hi @Anonymous
try like:
OverdueProjects =
COUNTROWS(
FILTER(Projects,
Projects[ProjectStatus] = "Done"
&& [TimeDiff] < 0
))
hi @Anonymous
try like:
OverdueProjects =
COUNTROWS(
FILTER(Projects,
Projects[ProjectStatus] = "Done"
&& [TimeDiff] < 0
))
Thanks very much!
User | Count |
---|---|
22 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
26 | |
13 | |
11 | |
9 | |
6 |