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
if that posible to make mesure to count brands count bigger than 10 for example instead of do with by summarize table try this formula
Measure_count = if(SUMX( SUMMARIZE('product','product'[Brand], 'product'[List Price], "brand_column", COUNT('product'[Brand])),COUNT([brand_column]))>=10,1,0)
and the count its results by this formula
Measure 5 = COUNTROWS(FILTER('product',[Measure_count]=1))
but it return blank thanks for advance
 
					
				
		
HI @ibrahim_emara,
You can try to use the following measure formula if it is suitable for your requirement: (I add the category group fields and allselected function to calculate current brand count)
formula =
VAR brandcount =
    CALCULATE (
        COUNT ( 'product'[Brand] ),
        ALLSELECTED ( 'product' ),
        VALUES ( 'product'[Brand] ),
        VALUES ( 'product'[List Price] )
    )
RETURN
    IF ( brandcount >= 10, 1, 0 )Regards,
Xiaoxin Sheng
your formula or my formule retrive 1 for every barnd , i try to put it in card so get to me sum of 1 only so to be 5 but cured get to me 1
Hi @ibrahim_emara,
I think this scenario should be related to the measure total level calculation with multiple level aggregations.
Measure Totals, The Final Word
You can try to use the following measure formula with a variable summarize table to aggregate the first level and use the iterator function to apply the second level aggregation:
formula =
VAR summary =
    SUMMARIZE (
        'product',
        'product'[Brand],
        'product'[List Price],
        "Brand count", IF ( COUNT ( 'product'[Brand] ) >= 10, 1, 0 )
    )
RETURN
    SUMX ( summary, [Brand count] )Regards,
Xiaoxin Sheng
@ibrahim_emara , then try this:
Result = CALCULATE(COUNT('product'[Brand]),FILTER('product','product'[Brand]>10))
@ibrahim_emara -> if this work, then please mark it as a solution and hit the Thumbs up! Thanks.
@truptis  it try this but get this error 
MdxScript(Model) (13, 80) Calculation error in measure 'product'[Measure 6]: DAX comparison operations do not support comparing values of type Text with values of type Integer. Consider using the VALUE or FORMAT function to convert one of the values.
thanks for our efforts
@ibrahim_emara - Make your Brand column as an integer since it is storing the count in it?
Hi @ibrahim_emara ,
Try this:
Result = var count_greaterthan10 = IF(count('product'[Brand]) > 10, 1,0)
return sum(count_greaterthan10)
i try that but in sum must get column not measure
 
					
				
				
			
		
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.
 
            | User | Count | 
|---|---|
| 85 | |
| 49 | |
| 36 | |
| 31 | |
| 30 |