The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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])
User | Count |
---|---|
17 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
26 | |
13 | |
12 | |
9 | |
8 |