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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
venkatbathula
Regular Visitor

How to Show Values for particular row Lets Suppose Monthly Percentage will sow only for Name Row

Dear Everyone ,

i am trying to show my Monthly Percentage to only Person name Row ..but same percentage is showing for below rows also ...i dont want that ....and Attendance days also i want to show only name row bit its showing for all rows please help me to solve this .Test.PNG

1 ACCEPTED SOLUTION
v-jtian-msft
Community Support
Community Support

Hi @venkatbathula , glad to help you.
According to your description, you want to show only the results of the first level, but hide the results of the following levels, right?
If I understand you correctly, I suggest you can try to use ISFILTERED() with IF () to manually control the display of the values in each level of the matrix.
Here are my test results
I created a test table:

vjtianmsft_0-1714110877696.png

Created a measure and applied it to a matrix for presentation.

vjtianmsft_1-1714110900334.png

Here is the DAX code:

M_ = 
IF(
    ISFILTERED('Table'[member]),BLANK(),
    IF(
        ISFILTERED('Table'[group]),SUMX('Table',[value])
    ))

By manually creating a metric, you can customise the output display for each row.

I hope my suggestions give you good ideas, if you have any more questions, please clarify in a follow-up reply.

Best Regards,
Carson Jian,
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
v-jtian-msft
Community Support
Community Support

Hi @venkatbathula , glad to help you.
According to your description, you want to show only the results of the first level, but hide the results of the following levels, right?
If I understand you correctly, I suggest you can try to use ISFILTERED() with IF () to manually control the display of the values in each level of the matrix.
Here are my test results
I created a test table:

vjtianmsft_0-1714110877696.png

Created a measure and applied it to a matrix for presentation.

vjtianmsft_1-1714110900334.png

Here is the DAX code:

M_ = 
IF(
    ISFILTERED('Table'[member]),BLANK(),
    IF(
        ISFILTERED('Table'[group]),SUMX('Table',[value])
    ))

By manually creating a metric, you can customise the output display for each row.

I hope my suggestions give you good ideas, if you have any more questions, please clarify in a follow-up reply.

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

test3.PNGHi @v-jtian-msft ,

 

Thanks for quick answer , if you see my table i am expection 11, 20 and 55% values to only for Names ...not for below numbers (Numbers are weeks of month). i want to show only for that perticular person attended 11 days out of 20 days and that percentage is 55% .this is what i wan to show.  you did amazing work but its showing total of that value ..but i dont want that .i created this percentage and total days in seperate DAX ...i want to show if each person that values.

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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

Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.