Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
I am trying to create a single column to flag contract review status. I want the query to first check the "Final Review Date" for a date and display as "Final Review Completed" if a date is entered. If there is no date populated in the "Final Review Date" column, I want the query to check the "Initial Review Date" column for a date and display as "Initial Review Completed" if there is a date entered. If neither date column displays a date, I want it to display "Not Reviewed". I am not sure how to write all of these conditions in a single column.
Any help is greatly appreciated.
Solved! Go to Solution.
Hi @Kaney1 ,
Review =
IF (
ISBLANK ( Dates[Final Review Date] ),
IF (
ISBLANK ( Dates[Initial Review Date] ),
"Not Reviewed",
"Initial Review Completed"
),
"Final Review Completed"
)
Let me know if you have any questions.
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.
Nathaniel
Proud to be a Super User!
Hi @Kaney1 ,
Review =
IF (
ISBLANK ( Dates[Final Review Date] ),
IF (
ISBLANK ( Dates[Initial Review Date] ),
"Not Reviewed",
"Initial Review Completed"
),
"Final Review Completed"
)
Let me know if you have any questions.
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.
Nathaniel
Proud to be a Super User!
Hi @Kaney1 ,
Or you can do this in Power Query which is less drain on memory. Go to Power Query, Add Column tab, Custom Column.
Let me know if you have any questions.
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.
Nathaniel
Proud to be a Super User!
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 28 | |
| 27 | |
| 25 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 53 | |
| 46 | |
| 38 | |
| 30 | |
| 21 |