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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

HELP

I have a measure below but I dont want to calculate blanks as 0 

 

HTPTS = IF ( 'BSCA Attendance'[HT1] = 0, 100, 0 ) + IF('BSCA Attendance'[HT2]=0,100,0) + IF('BSCA Attendance'[HT3]=0,100,0) + IF('BSCA Attendance'[HT4]=0,100,0) + IF('BSCA Attendance'[HT5]=0,100,0) + IF('BSCA Attendance'[HT6]=0,100,0)
 
its calculating the blanks and giving the value of 100 for each blank so 600 in total if all 0 or blank
 
Any ideas how to fix this 
1 ACCEPTED SOLUTION
v-henryk-mstf
Community Support
Community Support

Hi @Anonymous ,

 

According to your description, for row is blank(), its default type is Text and cannot be judged directly, you need to use the isblank function. I made a modification, the reference is as follows:

 

c = 
IF ( 'BSCA Attendance'[HT1] = 0, 100, 0 )
    + IF ( 'BSCA Attendance'[HT2] = 0, 100, 0 )
    + IF ( ISBLANK ( 'BSCA Attendance'[HT3] ), 100, 0 )
    + IF ( 'BSCA Attendance'[HT4] = 0, 100, 0 )
    + IF ( 'BSCA Attendance'[HT5] = 0, 100, 0 )
    + IF ( ISBLANK ( 'BSCA Attendance'[HT6] ), 100, 0 )

 

vhenrykmstf_0-1630484688210.png


If the problem is still not resolved, please provide detailed error information and let me know immediately. Looking forward to your reply.


Best Regards,
Henry


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-henryk-mstf
Community Support
Community Support

Hi @Anonymous ,

 

According to your description, for row is blank(), its default type is Text and cannot be judged directly, you need to use the isblank function. I made a modification, the reference is as follows:

 

c = 
IF ( 'BSCA Attendance'[HT1] = 0, 100, 0 )
    + IF ( 'BSCA Attendance'[HT2] = 0, 100, 0 )
    + IF ( ISBLANK ( 'BSCA Attendance'[HT3] ), 100, 0 )
    + IF ( 'BSCA Attendance'[HT4] = 0, 100, 0 )
    + IF ( 'BSCA Attendance'[HT5] = 0, 100, 0 )
    + IF ( ISBLANK ( 'BSCA Attendance'[HT6] ), 100, 0 )

 

vhenrykmstf_0-1630484688210.png


If the problem is still not resolved, please provide detailed error information and let me know immediately. Looking forward to your reply.


Best Regards,
Henry


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Fowmy
Super User
Super User

@Anonymous 

Add the following code as a new column to get the desired results.

HTPTS = 
COUNTROWS(
    FILTER(
        { 'BSCA Attendance'[HT1] ,'BSCA Attendance'[HT2] , 'BSCA Attendance'[HT3], 'BSCA Attendance'[HT4], 'BSCA Attendance'[HT5], 'BSCA Attendance'[HT6] },
        NOT ([Value] == BLANK()) && [Value]=0 
    )
) * 100
Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors