If Not Blank AND If Blank Statement

duesouth

New Member
Joined
Jan 30, 2024
Messages
3
Office Version
  1. 365
Platform
  1. Windows
I'm new to Power BI and looking for a bit of help. I've got 2 date fields and want to create a column from these.

If the [Start Date] is NOT blank AND the [End Date] IS blank then return "Yes", else return "No".

I've been googling like mad for 2 days, but no joy - so any help greatly appreciated for a rookie!
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Welcome to the forum. :)

Are you trying to do this in power query or as a calculated column using DAX?
 
Upvote 0
Then it would be:

Excel Formula:
=if(and(NOT(ISBLANK(Table1[Start Date])),ISBLANK(Table1[End Date])),"Yes","No")

amending the table name as needed.
 
Upvote 0
Solution
Glad we could help. :)
 
Upvote 0

Forum statistics

Threads
1,215,352
Messages
6,124,453
Members
449,161
Latest member
NHOJ

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top