Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
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.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
89 | |
86 | |
82 | |
64 | |
49 |
User | Count |
---|---|
125 | |
111 | |
88 | |
69 | |
66 |