Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
love
Helper I
Helper I

Problem with displaying correct calculated measure values in column charts

Hello all.

 

 

File with dummy data: https://www.dropbox.com/s/f6gnlzorq6tri9z/MockUp.pbix?dl=0

 

Untitled.jpg

 

 

User story: "AllocatedSelected" in the top left table is a calculated measure that returns a specific value for the selected time range in the date slicer - the value being hours of work. I want to be able to sum this value up for each configuration and visualize those values in a column chart.

 

Current behavior: If a configuration exists more than once, the value displayed in the column chart is 0 (you can test this by using the "Tasks" filter which as a consequence will only leave 1 value per configuration - it works fine then but not if a configuration has more than 1 value).

Expected behavior: If a configuration exists more than once than the sum of those values is displayed in the column chart. Example: If the "AllocatedSelected" value for Configuration A in Task 1 is 50 and the value for Configuration A in Task 2 is 25 then I would expect the column chart to return me a column for Configuration A with the value of 75.

 

 

 

Thanks,

-L

1 ACCEPTED SOLUTION

Hi @love

 

Try this MEASURE

 

Measure =
SUMX ( ALLSELECTED ( Tasks[Task] ), [AllocatedSelected] )

View solution in original post

4 REPLIES 4
love
Helper I
Helper I

@Zubair_Muhammad: You helped me already when I was in the process of creating some related measures in a previous thread.  

Would you please be so kind to have a look and potentially support me with my new challenge here? Robot Happy

 

 

Hi @love

 

Try this MEASURE

 

Measure =
SUMX ( ALLSELECTED ( Tasks[Task] ), [AllocatedSelected] )

Looks great! Thank you @Zubair_Muhammad for your support, as always. Much appreciated ❤️

 

I am not at my work station currently and want to give this solution a try with my actual data set. I will set this thread as completed right when I was able to confirm that.

 

Thanks again!

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors