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.
Hello,
Not sure why this measure returns the error "The expression refers to multiple columns. multiple colulmns cannot be converted to a scalar value.
Solved! Go to Solution.
Hi @Clint ,
As we know, we cannot create dynamic calculated table/ column. Here we can use table visual and a measure to work around.
Measure = var a = MAX('Table'[Task Name]) return IF(a in { "Customer Program" },"yes",BLANK())
Thank you. What ended up work is:
Hi @Clint ,
As we know, we cannot create dynamic calculated table/ column. Here we can use table visual and a measure to work around.
Measure = var a = MAX('Table'[Task Name]) return IF(a in { "Customer Program" },"yes",BLANK())
Thank you. What ended up work is:
Hi @Clint ,
Please update your formula as below.
Task Percent Completed for Customer Program = CALCULATE ( COUNTROWS ( 'Tasks' ), FILTER ( 'Tasks', 'Tasks'[Task Name] IN { "Customer Program" } ) )
Hello,
This
CALCULATE ( COUNTROWS ( 'Tasks' ), FILTER ( 'Tasks', 'Tasks'[Task Name] IN { "Customer Program" } ) )
just returns the count of 1 telling me there is only one task with that name. What I need to return is the value of the "Task percent Complete" for that task
Hi @Clint ,
the reason is that the FILTER formula returns a table as a result, while the CALCULATE formula should be used with a single number (single numbers are called 'scalar values' in Power BI).
What exactly do you want to obtain with the formula?
Regards,
LC
Shouldn't the filters there return a one cell table? I was hoping to return the value for percent complete for that one task in that one project
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
65 | |
64 | |
56 | |
39 | |
27 |
User | Count |
---|---|
85 | |
59 | |
45 | |
43 | |
38 |