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! Learn more
I have a Table Student and the columns are Group and Pass.
I need to create a measure where:
if even one feild in pass is True, then the group should be TRUE else it should be a false.
I have a measure which looks like below which does not seem to give me the write result.
Measure:= if(maxa('Student'[Pass]) = 1, true(),false())
					
				
			
			
				
			
			
				Solved! Go to Solution.
Hi @gene
You could try with this measure....
True-False = IF ( SUMX ( ADDCOLUMNS(Student;"NumPass";IF(Student[Pass];1;0)) ;[NumPass] ) >= 1 ; TRUE() ; FALSE() )
I hope it helps
Regards
BILASolution
Just another way of doing it
True-False = CALCULATE(countrows(Student),Student[Pass]=True)>=1
Hi @gene
You could try with this measure....
True-False = IF ( SUMX ( ADDCOLUMNS(Student;"NumPass";IF(Student[Pass];1;0)) ;[NumPass] ) >= 1 ; TRUE() ; FALSE() )
I hope it helps
Regards
BILASolution
Just another way of doing it
True-False = CALCULATE(countrows(Student),Student[Pass]=True)>=1
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.