Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! 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])
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 45 | |
| 35 | |
| 30 | |
| 15 | |
| 15 |
| User | Count |
|---|---|
| 58 | |
| 55 | |
| 38 | |
| 21 | |
| 21 |