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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Digger
Post Patron
Post Patron

Measure in row and both in columns

How to add measure which will be fixed and not go over months

 

Digger_0-1645525455314.png

I want only one comun for this measure not on each month

5 REPLIES 5
mh2587
Super User
Super User

This make no sense please elaborate the scenario


Did I answer your question? If so, please mark my post as a solution!


Proud to be a Super User!




LinkedIn Icon
Muhammad Hasnain



@mh2587 
i want measure3 on rows 

Digger_0-1645526068156.png


Expected result

Digger_2-1645526348099.png

 

 

Anonymous
Not applicable

Hi @Digger ,

When you put [Measure 3] under the Values option on the matrix, this will inevitably show up under each month. You can create the following measure to replace the field or measure already placed under the Values option, and the value of [Measure 3] will end up in the Column Total value. This may not be a good way to do it, but it can be used as a workaround...

Measure = IF ( ISINSCOPE ( 'Table'[month] ), SUM ( 'Table'[sales] ), [Measure 3] )

yingyinr_2-1645780665137.png

In addition, you can refer to the following blog to get it.

How to put the row and column subtotals in front of the matrix

1. Create a calculated table

Table2 =
UNION (
    DISTINCT ( 'Table'[Date] ),
    DATATABLE ( "Date", STRING, { { " Measure 3" } } )
)

yingyinr_1-1645780417427.png

2. Create a measure as below

Measure =
IF (
    SELECTEDVALUE ( 'Table2'[Date] ) = " Measure 3",
    [Measure 3],
    SUM ( 'Table'[Sales] )
)

yingyinr_3-1645780682559.png

Best Regards

@Anonymous  ty, but it not what i want to achieve, measure3 is not a total it is total of other measure

Anonymous
Not applicable

Hi @Digger ,

You can try the method which refer in the following blog.

How to put the row and column subtotals in front of the matrix

If the above one still can't help you get the expected result, please provide some sample data(exclude sensitive data) from the involved tables on the matrix visual and related visual settings. It is better if you can provide a simplified pbix file. Thank you.

Best Regards

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.