Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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
User | Count |
---|---|
9 | |
9 | |
7 | |
6 | |
6 |