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
morizf
Frequent Visitor

calculate a measure with a filter option and a filter option "not in"

Hello together,

 

i need help on a measure to calculate a quote. I have a table like this:

morizf_0-1691650151538.png

To get the quote i need the distinctcount article where the invoicetype is "nachorder". This is no problem

 CALCULATE(DISTINCTCOUNT(Article, invoicetype = "nachorder"). The problem is i need also the distinctcount where the invoicetype is "nachorder" and not "vororder"
CALCULATE(DISTINCTCOUNT(Article, invoicetype = "nachorder" && NOT(invoicetype = "vororder"))
but this doesn't work, can somebody help me with this measure?
 
Thank you in advance
 
1 REPLY 1
mlsx4
Memorable Member
Memorable Member

Hi @morizf 

 

I suggest to create a calculated column to exclude values first:

IsValid Column = 
IF (
    CALCULATE (
        COUNTROWS(MyTable),
        ALLEXCEPT ( MyTable, MyTable[Article])
    )
        <> CALCULATE(COUNTROWS(MyTable), ALLEXCEPT(MyTable, MyTable[Article], MyTable[invoicetype])),
    FALSE(),
    IF (
        CALCULATE (
            VALUES ( MyTable[invoicetype] ),
            ALLEXCEPT ( MyTable, MyTable[Article], MyTable[invoicetype] )
        )
            <> "nachorder",
        FALSE(),
        TRUE ()
    )
)

 

And later on, count over this column:

Measure = CALCULATE(DISTINCTCOUNT(MyTable[Article]),MyTable[IsValid Column]=TRUE())

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!

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.