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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
aasthashah_93
New Member

Filter Function

Hello,

As I want to filter the data twice 
For Eg - 

CALCULATE(SUM(BRS[Amount (in AED)]),
FILTER(BRS,BRS[Reason / Remark]) = "Debited in Bank not in Book" & "Debited in Bank not in Book +" & "Debited in Book not in Bank" & "Debited in Book not in Bank +" , FILTER(BRS,BRS[CFO Scorecard Group] = "BU"))
 
It showing me as error as 
A function 'FILTER' has been used in a True/False expression that is used as a table filter expression. This is not allowed.
2 ACCEPTED SOLUTIONS
shafiz_p
Super User
Super User

Hi @aasthashah_93  Try this if works:

CALCULATE(
    SUM(BRS[Amount (in AED)]),
    FILTER(
        BRS,
        BRS[Reason / Remark] = "Debited in Bank not in Book" ||
        BRS[Reason / Remark] = "Debited in Bank not in Book +" ||
        BRS[Reason / Remark] = "Debited in Book not in Bank" ||
        BRS[Reason / Remark] = "Debited in Book not in Bank +"
    ),
    BRS[CFO Scorecard Group] = "BU"
)

 

Hope this helps!!

If this solved your problem, please accept it as a solution and a kudos!!

 

 

Best Regards,
Shahariar Hafiz

View solution in original post

Anonymous
Not applicable

Hi @aasthashah_93 ,

Thanks for @shafiz_p's reply!
And @aasthashah_93 , another way:

Measure = 
CALCULATE(
    SUM(BRS[Amount (in AED)]),
    FILTER(
        BRS,
        BRS[Reason / Remark] IN {"Debited in Bank not in Book", "Debited in Bank not in Book +", "Debited in Book not in Bank", "Debited in Book not in Bank +"} && BRS[CFO Scorecard Group] = "BU"
    )
)

vjunyantmsft_0-1731983635111.png


Best Regards,
Dino Tao
If this post helps, then please consider Accept both of the replies as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @aasthashah_93 ,

Thanks for @shafiz_p's reply!
And @aasthashah_93 , another way:

Measure = 
CALCULATE(
    SUM(BRS[Amount (in AED)]),
    FILTER(
        BRS,
        BRS[Reason / Remark] IN {"Debited in Bank not in Book", "Debited in Bank not in Book +", "Debited in Book not in Bank", "Debited in Book not in Bank +"} && BRS[CFO Scorecard Group] = "BU"
    )
)

vjunyantmsft_0-1731983635111.png


Best Regards,
Dino Tao
If this post helps, then please consider Accept both of the replies as the solution to help the other members find it more quickly.

shafiz_p
Super User
Super User

Hi @aasthashah_93  Try this if works:

CALCULATE(
    SUM(BRS[Amount (in AED)]),
    FILTER(
        BRS,
        BRS[Reason / Remark] = "Debited in Bank not in Book" ||
        BRS[Reason / Remark] = "Debited in Bank not in Book +" ||
        BRS[Reason / Remark] = "Debited in Book not in Bank" ||
        BRS[Reason / Remark] = "Debited in Book not in Bank +"
    ),
    BRS[CFO Scorecard Group] = "BU"
)

 

Hope this helps!!

If this solved your problem, please accept it as a solution and a kudos!!

 

 

Best Regards,
Shahariar Hafiz

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

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.

March Power BI Update Carousel

Power BI Community Update - March 2026

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