Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
The first if statement is working the rest are coming up as erors where am i going wrong ?
if [#"Date 1"] = null then [#"Date 2"]
else if [#"Date 1"] = null and [#"Date 2"] = null
then [#"Date 3"] else 0
Any help greatly appreciated
Solved! Go to Solution.
Hi,
The order of condition is not appropriate, in the first condition if [#"Date 1"] = null is true, it result in [#"Date 2"] which might be null also, so revise the formula as follow
if [#"Date 1"] = null and [#"Date 2"] = null
then [#"Date 3"] else if [#"Date 1"] = null then [#"Date 2"]
else 0
You can also use the following magical writing method:
[#"Date 1"] ?? [#"Date 2"] ?? [#"Date 3"] ?? 0
You can also use the following magical writing method:
[#"Date 1"] ?? [#"Date 2"] ?? [#"Date 3"] ?? 0
Awesome thank you
Hi,
The order of condition is not appropriate, in the first condition if [#"Date 1"] = null is true, it result in [#"Date 2"] which might be null also, so revise the formula as follow
if [#"Date 1"] = null and [#"Date 2"] = null
then [#"Date 3"] else if [#"Date 1"] = null then [#"Date 2"]
else 0
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
User | Count |
---|---|
16 | |
10 | |
9 | |
9 | |
8 |
User | Count |
---|---|
23 | |
17 | |
12 | |
12 | |
12 |