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! Learn more
Hello Power BI Community
Please help with this development task.
I am trying to acheive the Total Out column by using the Hidden Field to group the numbers of the seperate results in the Detail coumn, that I am not wanting to include in the matrix in blue.
Once making the Total Out column, I can then made the graph on the right. The graph shows each Business Area but the figures from Total Out.
The issue is that I need to clever DAX to avoid having to include the Hidden Field in the marix that would also help me create the graph without using Hidden Field.
The data is held within the Excel file in the DataRequests tab and the Detail and Total Out is the sum of the No. Data Requests column therein.
@Anonymous,
You may refer to the measure below.
Measure =
VAR g =
SELECTEDVALUE ( Table1[Hidden Field] )
RETURN
CALCULATE (
SUM ( Table1[Detail] ),
Table1[Hidden Field] = g,
ALLSELECTED ( Table1[Busines Area] )
)
@Anonymous,
It seems to work for me.
Hi Sam
I tried what you suggested again and I got the screenshot below and suffering from missing values.
Have you got your pbix ?
Thanks
Jude
@Anonymous,
Yes, check if the values in [Hidden Field] match exactly.
Hi Sam
Did you attach something that I missed ?
You mentioned Yes but I didnt see anything attached.
Sorry if I missed it.
Jude
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.