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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
pintobean87
Frequent Visitor

Create columns that count number of blanks and populated cells

So I have two columns: "Start date" and "End date" Some cells in the columns, however, are blank. So, I want to create 3 columns that add a "1" in the their respective cells based on the following conditions:

 

Column One: If row has a start date and end date, then add a "1"

Column Two: If row has a start date and no end date, then add a "1"

Column Three: If row has no start date and no end date, then add a "1"

 

Reason I want three columns is because then I'll add up those 1s to display the number of rows that fall under each category.

1 ACCEPTED SOLUTION
PhilipTreacy
Super User
Super User

Hi @pintobean87 

 

Download example PBIX file

 

You can do this with measures.  Usually best to use measures when you can rather than create unnecessary columns in your data set.

 

 

Start Date and End Date = CALCULATE(COUNTROWS('DataTable'), FILTER('DataTable', NOT ISBLANK('DataTable'[End Date]) && NOT ISBLANK('DataTable'[Start Date])))

 

 

 

No End Date = CALCULATE(COUNTROWS('DataTable'), FILTER('DataTable', ISBLANK('DataTable'[End Date]) && NOT ISBLANK('DataTable'[Start Date])))

 

 

 

No Start Date and No End Date = CALCULATE(COUNTROWS('DataTable'), FILTER('DataTable', ISBLANK('DataTable'[End Date]) && ISBLANK('DataTable'[Start Date])))

 

 

enddates.png

 

Regards

 

Phil



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @pintobean87,

Did the above suggestions help with your scenario? if that is the case, you can consider Kudo or Accept the helpful suggestions to help others who faced similar requirements.

If these also don't help, please share more detailed information to help us clarify your scenario to test.

How to Get Your Question Answered Quickly 

Regards,

Xiaoxin Sheng

FreemanZ
Super User
Super User

Try add three columns with the codes respectively:
Column One = IF ([Start Date]<>BLANK()&&[End Date]<>BLANK(),1)
Column Two = IF ([Start Date]<>BLANK()&&[End Date]=BLANK(),1)
Column Three = IF ([Start Date]=BLANK()&&[End Date]=BLANK(),1)
 
If you feel comfortable with Power Query, you shall turn to PQ to add conditional columns.
PhilipTreacy
Super User
Super User

Hi @pintobean87 

 

Download example PBIX file

 

You can do this with measures.  Usually best to use measures when you can rather than create unnecessary columns in your data set.

 

 

Start Date and End Date = CALCULATE(COUNTROWS('DataTable'), FILTER('DataTable', NOT ISBLANK('DataTable'[End Date]) && NOT ISBLANK('DataTable'[Start Date])))

 

 

 

No End Date = CALCULATE(COUNTROWS('DataTable'), FILTER('DataTable', ISBLANK('DataTable'[End Date]) && NOT ISBLANK('DataTable'[Start Date])))

 

 

 

No Start Date and No End Date = CALCULATE(COUNTROWS('DataTable'), FILTER('DataTable', ISBLANK('DataTable'[End Date]) && ISBLANK('DataTable'[Start Date])))

 

 

enddates.png

 

Regards

 

Phil



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.