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

Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.

Reply
AllyT11
New Member

How to count positive and negative values of a measure

I have an 'On Target' measure that has been created from 3 separate tables - this is used on a matrix visual showing accounts/customers that are either on or below target.

 

Is there a way of doing a count of the accounts/customers that are on or exceeding their targets (all the positive values) and the same for negative values? Looking to show the % of accounts/customers that are on target vs those that aren't.

 

When I try adding a count measure the 'On Target' measure is not an option to select. Is this because already calculated measures cannot be used within another measure?

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

HI @AllyT11 
Please try

Count +ve =
COUNTROWS (
    FILTER (
        ADDCOLUMNS ( VALUES ( 'Table'[Customer Account] ), "@OnTarget", [On Target] ),
        [@OnTarget] > 0
    )
)
Count -ve =
COUNTROWS (
    FILTER (
        ADDCOLUMNS ( VALUES ( 'Table'[Customer Account] ), "@OnTarget", [On Target] ),
        [@OnTarget] < 0
    )
)

View solution in original post

1 REPLY 1
tamerj1
Super User
Super User

HI @AllyT11 
Please try

Count +ve =
COUNTROWS (
    FILTER (
        ADDCOLUMNS ( VALUES ( 'Table'[Customer Account] ), "@OnTarget", [On Target] ),
        [@OnTarget] > 0
    )
)
Count -ve =
COUNTROWS (
    FILTER (
        ADDCOLUMNS ( VALUES ( 'Table'[Customer Account] ), "@OnTarget", [On Target] ),
        [@OnTarget] < 0
    )
)

Helpful resources

Announcements
May PBI 25 Carousel

Power BI Monthly Update - May 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

May 2025 Monthly Update

Fabric Community Update - May 2025

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