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.
Good evening, I have 1 report that contains the balance for a list of projects. I want to simulate that one or several projects are zeroed, that is to say that the balance is multiplied by zero, only to some of the selected projects. I tried with SWITCH but it applies the zero to all the projects and not only to the selected ones. thanks for the help.
Solved! Go to Solution.
Hi @MikeKP72 ,
Try to use ALLSELECTED function
I create a seperate table to put [ID]. There's no relationship between two tables.
Table 2 = DISTINCT('Table'[ID])
Measure is like
Measure = IF(MAX('Table'[ID]) IN ALLSELECTED('Table 2'[ID]),0,SUM('Table'[Value]))
The [ID] in the slicer is from Table 2.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@amitchandak, Thanks for the tip, it helped me.
I still have to solve that selecting from that new table 2 or more projects does not work. The selectvalue is for single selections? Thanks
Hi @MikeKP72 ,
Try to use ALLSELECTED function
I create a seperate table to put [ID]. There's no relationship between two tables.
Table 2 = DISTINCT('Table'[ID])
Measure is like
Measure = IF(MAX('Table'[ID]) IN ALLSELECTED('Table 2'[ID]),0,SUM('Table'[Value]))
The [ID] in the slicer is from Table 2.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks Stephen.
It helped me to solve the problem, and thanks for the example.
Regards
@MikeKP72 , for this you need an independent project table and you need to select a project from there
a mesure like. example
if(max(Table[project]) = selectedvalue(Project[Project]) , 0, sum(Table[Value])
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 |
---|---|
146 | |
85 | |
66 | |
52 | |
47 |
User | Count |
---|---|
215 | |
90 | |
83 | |
66 | |
58 |