March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch 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!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
114 | |
76 | |
57 | |
52 | |
44 |
User | Count |
---|---|
164 | |
116 | |
63 | |
57 | |
50 |