Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register 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])
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
21 | |
15 | |
14 | |
11 | |
7 |
User | Count |
---|---|
26 | |
24 | |
12 | |
11 | |
10 |