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 September 15. Request your voucher.

Reply
Steg
Helper I
Helper I

Use Boolean in a filter

Hi Experts,

I am using the following calculation:

Verzoekers =
SUMMARIZE(
    FILTER(
        PartijOpZaak,
        PartijOpZaak[PartijRolNaam]="eiser"
        ),
    PartijOpZaak[Zaak.Zaaknummer],
    PartijOpZaak[Partijnaam],
PartijOpZaak[PartijRolNaam]
)
 
Now I found out, I need to use another value, based on an "or" statement. So what I need the query summerize PartijOpZaak[PartijRolNaam]="eiser" as well as PartijOpZaak[PartijRolNaam]="verzoeker"
how would the formula be?
1 ACCEPTED SOLUTION
smpa01
Super User
Super User

@Steg 

SUMMARIZE(
    FILTER(
        PartijOpZaak,
        PartijOpZaak[PartijRolNaam]="eiser"||PartijOpZaak[PartijRolNaam]="other value"
        ),
    PartijOpZaak[Zaak.Zaaknummer],
    PartijOpZaak[Partijnaam],
PartijOpZaak[PartijRolNaam]
)
Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs

View solution in original post

1 REPLY 1
smpa01
Super User
Super User

@Steg 

SUMMARIZE(
    FILTER(
        PartijOpZaak,
        PartijOpZaak[PartijRolNaam]="eiser"||PartijOpZaak[PartijRolNaam]="other value"
        ),
    PartijOpZaak[Zaak.Zaaknummer],
    PartijOpZaak[Partijnaam],
PartijOpZaak[PartijRolNaam]
)
Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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