Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
below function is not working, what could be wrong
ChocoChipsRevenue = CALCULATE(SUM(financials[Revenue]),financials[Country]= "Canada",financials[Country]="France")
Solved! Go to Solution.
Hi @Anonymous
Try this:
OR:
ChocoChipsRevenue =
CALCULATE (
SUM ( financials[Revenue] ),
financials[Country] = "Canada"||
financials[Country] = "France"
)
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn | Twitter | Blog | YouTube
Hi @Anonymous
Try this:
OR:
ChocoChipsRevenue =
CALCULATE (
SUM ( financials[Revenue] ),
financials[Country] = "Canada"||
financials[Country] = "France"
)
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn | Twitter | Blog | YouTube
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
29 | |
18 | |
15 | |
7 | |
6 |