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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
PeteyG
Frequent Visitor

IF isBlank on multiple columns return first nonblank date.

Hello all-

 

I am trying to create a new column called in this example "Issued Date"  What I need it to do is look back at Date4 and if it has a date put that date in.  If blank look at date3.  If it has a date return that one otherwise going to Date2 and so on.  I can do it between two columns but as soon as I add a third and forth I get two many arguments errors.  Anyone have a work around?

 

 

ItemDate1Date2Date3Date4Issued Date
item1  9/29/2021  12/21/2022  9/12/2023   9/12/2023
item29/29/2021  12/21/2022  9/12/2023  5/29/2024  5/29/2024
item39/29/2021     9/29/2021
item49/29/2021  12/21/2022  9/12/2023 5/29/2024  5/29/2024
item59/29/202  12/21/2022    12/21/2022
item69/29/2021     9/29/2021
item79/29/2021  12/21/2022  9/12/2023   9/12/2023
item89/29/202112/21/20229/12/20235/29/20245/29/2024

 

1 ACCEPTED SOLUTION
parry2k
Super User
Super User

@PeteyG you can try something like this:

 

Issued Date = 
COALESCE ( Table[Date4], Table[Date3], Table[Date2], Table[Date1] )


Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

View solution in original post

3 REPLIES 3
parry2k
Super User
Super User

@PeteyG Happy to help. Cheers!



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

parry2k
Super User
Super User

@PeteyG you can try something like this:

 

Issued Date = 
COALESCE ( Table[Date4], Table[Date3], Table[Date2], Table[Date1] )


Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

That was perfect!  I can not believe how much time I spent on nested if statments to not work.  Thanks so much!

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors