This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
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])
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 34 | |
| 31 | |
| 25 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 60 | |
| 48 | |
| 29 | |
| 23 | |
| 23 |