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
Hi,
I have a date_column (Approved_Date), I need a new column to be created if there is a date in in Approved Date, I need value as approved in my new column.
| Approved_Date | New_Column |
| 10/10/2019 | Approved |
| null | null |
| 11/01/2020 | Approved |
Solved! Go to Solution.
@Anonymous
You can create calculated column.
Column = IF(NOT(ISBLANK('Table'[Approved_Date])),"Approved")@Anonymous
You can create calculated column.
Column = IF(NOT(ISBLANK('Table'[Approved_Date])),"Approved")@Anonymous
try
New_Column = IF(ISBLANK(Table[Approved_Date]), BLANK(), Table[Approved_Date])
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 22 | |
| 22 | |
| 18 | |
| 16 | |
| 13 |
| User | Count |
|---|---|
| 63 | |
| 42 | |
| 40 | |
| 40 | |
| 38 |