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

Be 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

Reply
SarahLamblin
New Member

Countrows and summarize

Good morning,

 

I've created a matrix table using 4 columns and one measure.

It is a matrix table to visualize article numbers based on Article Status, Article type and Article group.

The aim is to retrieve the number of articles per Article group.

 

This the measure I initially created:

Aantal artikels =
VAR aantalartikels =
COUNTROWS(
SUMMARIZE(Artikelgegevens, Artikelgegevens[Artikelstatus], Artikelgegevens[Artikelsoort],
ArtikelGroepOmschrijving[ArtikelgroepOmschrijving], Artikelomschrijving[ArtikelNr])
)

RETURN
aantalartikels

 

But that gives the following result: (The totals per Article Group are correct, but I want to leave the count of Article Nr per row. I don't want to see the number 1 on each row next to article number.)

Countrows.jpg

So the I tried the following measure:

Aantal artikels =
VAR aantalartikels =
COUNTROWS(
SUMMARIZE(Artikelgegevens, Artikelgegevens[Artikelstatus], Artikelgegevens[Artikelsoort],
ArtikelGroepOmschrijving[ArtikelgroepOmschrijving], Artikelomschrijving[ArtikelNr])
)


RETURN
IF(ISFILTERED(Artikelomschrijving[ArtikelNr]), blank(), aantalartikels)

 

But when I use this measure the Article Numbers on itself are no longer visible.

 

I do want to see the Article Numbers, but not the value of 1 next to each article number.

 

Can someone help me to obtain this result?

 

Thank you!

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @SarahLamblin ,

I have created a simple sample. Please have a try.

VAR aantalartikels =
COUNTROWS(
SUMMARIZE('Table','Table'[ArtikelSoort],'Table'[ArtikelStatus],'Table'[ArtikelgroepOmschriving],'Table'[Gemarieerd]))

RETURN
MAX('Table'[Gemarieerd])
vpollymsft_0-1643620469164.png

 

If it is possible, please provide your pbix file without privacy information and desired output.

 

Best Regards

Community Support Team _ Polly

 

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

2 REPLIES 2
Anonymous
Not applicable

Hi @SarahLamblin ,

I have created a simple sample. Please have a try.

VAR aantalartikels =
COUNTROWS(
SUMMARIZE('Table','Table'[ArtikelSoort],'Table'[ArtikelStatus],'Table'[ArtikelgroepOmschriving],'Table'[Gemarieerd]))

RETURN
MAX('Table'[Gemarieerd])
vpollymsft_0-1643620469164.png

 

If it is possible, please provide your pbix file without privacy information and desired output.

 

Best Regards

Community Support Team _ Polly

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

 

 

 

 

SarahLamblin
New Member

I've also tried using if(isinscope instead of if(isfiltered, but the result is still not what I want

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.