Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi Folks,
I have one matrix visual , where i have hierarchy . i dont want to show total of Assurance (2959.63), without using subtotal.
Can anyone suggest me
Regards,
Pratik.S
Solved! Go to Solution.
Hi @UI ,
I have a test by creating a sample. I think you can try this code.
Measure =
IF(
ISINSCOPE(Employees[StaffName]),
[Employee Target],
IF(ISINSCOPE(Employees[StaffOfficeName]),
[Employee Target],
IF(ISINSCOPE(Employees[StaffUnitName]),
IF(MAX(Employees[StaffUnitName]) = "Assurance",
"",
[Employee Target]),
IF(ISINSCOPE(Employees[StaffPosition]),
[Employee Target]))))
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@UI , You can make it blank
a measure like
if(max(Table[Value]) = "Assurance" && Not(isinscope(Table[Name])) , blank(), [Measure])
Name is is level below it, it is not in scope means it is subtotal
@amitchandak the measure you assign me its not working, can you provide me another solution on this..
Regards,
Pratik .S
Hi @UI ,
I have a test by creating a sample. I think you can try this code.
Measure =
IF(
ISINSCOPE(Employees[StaffName]),
[Employee Target],
IF(ISINSCOPE(Employees[StaffOfficeName]),
[Employee Target],
IF(ISINSCOPE(Employees[StaffUnitName]),
IF(MAX(Employees[StaffUnitName]) = "Assurance",
"",
[Employee Target]),
IF(ISINSCOPE(Employees[StaffPosition]),
[Employee Target]))))
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
82 | |
81 | |
52 | |
39 | |
34 |
User | Count |
---|---|
95 | |
78 | |
52 | |
49 | |
47 |