Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I am getting an issue in creating a DAX function in Power BI.
My Query
SELECT SUM(AMOUNT) FROM TABLE1
WHERE REVENUE_TYPE NOT LIKE '%CRA';
I want to replicate this thing in Power BI using DAX. Need some inputs
Thanks!
Solved! Go to Solution.
I tried this method and it worked for import method,
I tried this method and it worked for import method,
Hi,
Here is an example:
Dax:
I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!
Proud to be a Super User!
I understood the above concept or logic. But my issue is with the LIKE operator. How to implement that in DAX. And you can see it should filter the values starts with "CRA".
====> WHERE REVENUE_TYPE NOT LIKE '%CRA';
Not equal to would been easier but it is not!
Hi @Anonymous ,
You can create a DAX measure in Power BI to replicate the SQL query you provided. Here's a DAX measure that should give you the desired result:
Total Amount Excluding CRA =
CALCULATE(
SUM(TABLE1[AMOUNT]),
FILTER(
TABLE1,
NOT (CONTAINSSTRING(TABLE1[REVENUE_TYPE], "CRA"))
)
)
This measure calculates the sum of the AMOUNT column in TABLE1 while excluding rows where the REVENUE_TYPE contains "CRA".
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
9 | |
8 | |
7 | |
6 |
User | Count |
---|---|
14 | |
13 | |
11 | |
9 | |
9 |