Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. 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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
143 | |
85 | |
66 | |
51 | |
45 |
User | Count |
---|---|
216 | |
89 | |
82 | |
66 | |
57 |