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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

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
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

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

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.