cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
Syndicate_Admin
Administrator
Administrator

Exclude count of a specific data in the total of an array

Hi all 😁

I currently have a matrix in which I group and show the total of a series of values, but I have a problem 😭 and I hope you can help me.

What I want is that of the total value generated exclude from the sum a specific row but that additionally this row is visible (ie do not remove the row only omit from the total count) as you can see in the attached image within that total "26" should not add the value "9" ie the value I should show is 17

WhatsApp Image 2020-05-28 at 3.27.50 PM.jpeg

thank you very much for your advice and help. 🙏

1 ACCEPTED SOLUTION
V-pazhen-msft
Community Support
Community Support

@Syndicate_Admin 

Check my example, you can use the below HASONEVALUE() function to ignore morning in the Total.

 

Measure = IF(HASONEVALUE('Table'[Value]),SUM('Table'[Value]),CALCULATE(SUM('Table'[Value]),FILTER('Table',[Time of Day]<>"Morning")))

Vpazhenmsft_1-1626318232719.png

 

 

Paul Zheng _ Community Support Team
If this post helps, please Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
V-pazhen-msft
Community Support
Community Support

@Syndicate_Admin 

Check my example, you can use the below HASONEVALUE() function to ignore morning in the Total.

 

Measure = IF(HASONEVALUE('Table'[Value]),SUM('Table'[Value]),CALCULATE(SUM('Table'[Value]),FILTER('Table',[Time of Day]<>"Morning")))

Vpazhenmsft_1-1626318232719.png

 

 

Paul Zheng _ Community Support Team
If this post helps, please Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@Syndicate_Admin , isinscope should help 

First, create a total  measure

Assuming column is row or group by or axis

 

 total measure = calculate(sum(Table[Value]), filter(allselected(Table, not(Table[column] in {"Nuevous En el Mes"}))))

Shift measure = if(isinscope(Table[column]) , sum(Table[Value]) , [total measure])

 

Shift measure you have use. You can more columns in if to check isinscope if needed

https://www.kasperonbi.com/use-isinscope-to-get-the-right-hierarchy-level-in-dax/

Syndicate_Admin
Administrator
Administrator

Up, porfa someone who can help me

Hi @Syndicate_Admin .

 

You can find the solution for that on the below link;

https://www.pbiusergroup.com/communities/community-home/digestviewer/viewthread?MessageKey=91f809c1-...

 

Regards,

Sanket Bhagwat.

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors