Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 |
---|---|
25 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
27 | |
13 | |
11 | |
9 | |
6 |