Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi All,
I have a table like so...
| Order Date | Date Secured |
| 11/11/2022 | null |
| 12/11/2022 | null |
| null | 14/11/2022 |
| null | 15/11/2022 |
| 13/11/2022 | null |
I would like this result....
| Order Date | Date Secured | Close Date |
| 11/11/2022 | null | 11/11/2022 |
| 12/11/2022 | null | 12/11/2022 |
| null | 14/11/2022 | 14/11/2022 |
| null | 15/11/2022 | 15/11/2022 |
| 13/11/2022 | null | 13/11/2022 |
Many Thanks all I will accept your solution if correct tomorow morning!
Taylor
Solved! Go to Solution.
@Ttaylor9870 So if it is really "null" as in the word "null" it would be:
Close Date Column = IF([Order Date] = "null",[Date Secured],[Order Date])
if the "null" in your data represents a "blank" the it is:
Close Date Column = IF([Order Date] = BLANK(),[Date Secured],[Order Date])
@Ttaylor9870 So if it is really "null" as in the word "null" it would be:
Close Date Column = IF([Order Date] = "null",[Date Secured],[Order Date])
if the "null" in your data represents a "blank" the it is:
Close Date Column = IF([Order Date] = BLANK(),[Date Secured],[Order Date])
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 7 | |
| 6 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 11 | |
| 8 | |
| 8 | |
| 8 |