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! Learn more

Reply
Anonymous
Not applicable

Count blank cell per row

Hi,

how can i achieve this?

 

I want to creare "Error" column to count how many blanks cell in "A_CN A_TR P_CN P_TR" columns.

Immagine.png

 

Thanks

1 ACCEPTED SOLUTION

I know that your columns are text columns.

 

True|False represent 1 and 0 and as you can see in my post I'm converting them with INT.

So yes you could count your Blank Cells since A=="" would result in TRUE and this would result in the number 1 by using the INT function summing the 1s would result in your count value Smiley Very Happy

 

Please give it first a try...

 

BR,

Josef

View solution in original post

5 REPLIES 5
JosefPrakljacic
Solution Sage
Solution Sage

Hey @Anonymous ,

 

you create a calculated column like this one

 

 

YourColumn = INT('Table'[A]=="")+INT('Table'[B]=="")

 

If this post was helpful may I ask you to mark it as solution and give it a 'thumbs up'? This will also help others

Have a nice day!

BR,
Josef
Graz - Austria

Anonymous
Not applicable

These are text column

 

If i do columnA=""" i get True or False, i need to count blank cells

 

Thansk

I know that your columns are text columns.

 

True|False represent 1 and 0 and as you can see in my post I'm converting them with INT.

So yes you could count your Blank Cells since A=="" would result in TRUE and this would result in the number 1 by using the INT function summing the 1s would result in your count value Smiley Very Happy

 

Please give it first a try...

 

BR,

Josef

Anonymous
Not applicable

Works Thanks

You are very welcome 😃

Helpful resources

Announcements
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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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