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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
sunnysrujan
Regular Visitor

Except with dynamic filter is not working

i am trying to get all students from my table 1 that do not exist in table 2 using EXCEPT function. I was able to get it work when filters were hardcoded but as soon as i added dynamic filter, results show me blank. Not sure why this is happening. I am attaching the measure that is working and not working respectively (i have cohort and enrollment terms as two different slicers)

Measure :=
VAR selectedCohortTerm =
SELECTEDVALUE ( 'Dim Cohort Term'[Term Description] )
VAR selectedTrackingTerm =
SELECTEDVALUE ( 'Dim Enroll Term'[Term Description] )
VAR ADM =
CALCULATETABLE (
DISTINCT ( 'Fact Admissions'[Dim Person Key] ),
'Dim Cohort Term'[Term Description] = selectedCohortTerm
)
VAR ENRL =
CALCULATETABLE (
DISTINCT ( 'Fact eNROLLMENT'[Dim Person Key] ),
'Dim Enroll Term'[Term Description] = "Fall 2019"
)
RETURN
COUNTROWS ( EXCEPT ( ADM, ENRL ) )
 
Measure not working =
VAR selectedCohortTerm =
SELECTEDVALUE ( 'Dim Cohort Term'[Term Description] )
VAR selectedTrackingTerm =
SELECTEDVALUE ( 'Dim Enroll Term'[Term Description] )
VAR ADM =
CALCULATETABLE (
DISTINCT ( 'Fact Admissions'[Dim Person Key] ),
'Dim Cohort Term'[Term Description] = selectedCohortTerm
)
VAR ENRL =
CALCULATETABLE (
DISTINCT ( 'Fact eNROLLMENT'[Dim Person Key] ),
'Dim Enroll Term'[Term Description] = selectedTrackingTerm
)
RETURN
COUNTROWS ( EXCEPT ( ADM, ENRL ) )
1 ACCEPTED SOLUTION
sunnysrujan
Regular Visitor

problem has been resolved. second filter was applied for both which is why result was blank. thanks for trying

View solution in original post

8 REPLIES 8
sunnysrujan
Regular Visitor

problem has been resolved. second filter was applied for both which is why result was blank. thanks for trying

PaulDBrown
Community Champion
Community Champion

Are these two the same data type ? 'Dim Enroll Term'[Term Description] & selectedTrackingTerm





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






they should be as selectedTrackingTerm = selectedvalue('Dim Enroll Term'[Term Description]). Meanwhile i created another report to see if its behaving same with other filters (added 4 other slicers) and works perfect. 

1. If i have to think relationships are wrong here, measure should not work when hardcoded?

2. same measure with Intersect function works fine too, problem i have when using Except here particularly

parry2k
Super User
Super User

@sunnysrujan how you tested the selectTrackingItem  is returning the value?



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

yes i did test and it does return the selected value of the Tracking Term

parry2k
Super User
Super User

@sunnysrujan also it is very hard to provide a solution without knowing how these tables are related to each other. Read this post to get your answer quickly.

https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

selectTrackingTerm is single selection and yes it is showing value, also i tested the same measure by providing hardcoded values and it gave me accurate results, which is why this is confusing

parry2k
Super User
Super User

@sunnysrujan can you check what selectedTrackignTerm is returning? SELECTEDVALUE function will return blank if you are selecting more than one value

 

Check my latest blog post Comparing Selected Client With Other Top N Clients | PeryTUS  I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.