Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
MikeKP72
New Member

Multiply a single value in a table by Zero

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.

1 ACCEPTED 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])

9.png10.png

 

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.

12.png

 

 

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.

View solution in original post

4 REPLIES 4
MikeKP72
New Member

@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])

9.png10.png

 

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.

12.png

 

 

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

amitchandak
Super User
Super User

@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])

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.