This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hello,
As I want to filter the data twice
For Eg -
Solved! Go to Solution.
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
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"
)
)
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.
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"
)
)
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.
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
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.