Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I am having difficulty writing a pretty simple DAX expression:
Expression =
Solved! Go to Solution.
@Anonymous , Assuming your formulas are correct
countx(filter(summarize('Table', 'Table'[RESPONDENT_ID], "_1", CALCULATE(COUNT('Table'[RESPONDENT_ID]), FILTER('Table','Table'[QUESTION_ID] = 6 && 'Table'[answer_short_desc]= "No Change")) , "_2",CALCULATE(COUNT('Table'[RESPONDENT_ID]), FILTER('Table','Table'[QUESTION_ID] = 4 && 'Table'[answer_short_desc]= "Yes")) ) ,not(isblank([_1])) && not(isblank([_2]))
), [RESPONDENT_ID])
@Anonymous , Assuming your formulas are correct
countx(filter(summarize('Table', 'Table'[RESPONDENT_ID], "_1", CALCULATE(COUNT('Table'[RESPONDENT_ID]), FILTER('Table','Table'[QUESTION_ID] = 6 && 'Table'[answer_short_desc]= "No Change")) , "_2",CALCULATE(COUNT('Table'[RESPONDENT_ID]), FILTER('Table','Table'[QUESTION_ID] = 4 && 'Table'[answer_short_desc]= "Yes")) ) ,not(isblank([_1])) && not(isblank([_2]))
), [RESPONDENT_ID])
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.