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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
GanesaMoorthyGM
Helper II
Helper II

Hide monthly values for one column in Matrix but keep subtotals and totals visible

Hi Team,

I'm back once again in need of better formatting visuals:

So I partially achieved the goal:

GanesaMoorthyGM_0-1765270492809.png


Now What I'm looking to execute is You can see the stock turn column which shows value for every month, but instead of showing for every month i'm okay with showin only the subtotal for that (Stock Turn) and dont show value for each month whereas the other 2 column should show values each month is this possible?

If YES, Guide me through I'm expecting like
Screenshot 2025-12-09 142306.png

And this is my Stock Turn Measure:

Stock Turn =
DIVIDE(
    [Total Sales Value in Cr stock],
    [Average Stock Value in Cr FSM],
    BLANK()
)



1 ACCEPTED SOLUTION
xifeng_L
Super User
Super User

Hi @GanesaMoorthyGM,

 

You can try below measure:

 

Stock Turn =
IF(NOT ISINSCOPE(Calendar[MonthName]),
    DIVIDE(
        [Total Sales Value in Cr stock],
        [Average Stock Value in Cr FSM],
        BLANK()
    )
)

 

 

Did I answer your question? If yes, pls mark my post as a solution and appreciate your Kudos !

 

Thank you~

View solution in original post

2 REPLIES 2
xifeng_L
Super User
Super User

Hi @GanesaMoorthyGM,

 

You can try below measure:

 

Stock Turn =
IF(NOT ISINSCOPE(Calendar[MonthName]),
    DIVIDE(
        [Total Sales Value in Cr stock],
        [Average Stock Value in Cr FSM],
        BLANK()
    )
)

 

 

Did I answer your question? If yes, pls mark my post as a solution and appreciate your Kudos !

 

Thank you~

Thank You @xifeng_L ,

With Slight Modification I achieved this using..

Stock Turn (Display) =
VAR _isMonth = ISINSCOPE('Dim_Month'[MonthName])  
RETURN
IF(
    _isMonth,
    BLANK(),          
    [Stock Turn]        
)

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.