The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi,
I'm struggling to work out how this piece of code is being being evaluated, in particular what is being calculated first, second and so on. If some could break it down to show what each step is in order it would be a great help.
Also, Is there a way of making this code simpler using Variables?
Days ERT to Outcome =
IF (
NOT ( ISBLANK ( 'Cases'[ERT Start FlagDate] )),
IF (
ISBLANK ( 'Cases'[formofauthorityreceiveddate] ),
DATEDIFF (
IF (
'Cases'[Created Date] > 'Cases'[ERT Start FlagDate],
'Cases'[Created on],
'Cases'[ERT Start FlagDate]
),
IF ( ISBLANK ( 'Cases'[ERT End FlagDate] ), NOW (), 'Cases'[ERT End FlagDate] ),
DAY
),
DATEDIFF ( 'Cases'[ERT Start FlagDate], 'Cases'[ERT End FlagDate], DAY )
),
BLANK ()
)
Thanks,
Solved! Go to Solution.
IF statements work from the top in so it check 1, the 2 etc:
It startts with 1 and IF 'Cases[ERT Start Flag Date] is not blank it goes to section A which starts the 2 check, if it is blank it gos to B and returns a BLANK().
Hi @ArchStanton
The explanation from @jdbuchanan71 is perfect. Regarding your second question, you can use variables in this way:
Days ERT to Outcome =
var _startFlag= ISBLANK ( 'Cases'[ERT Start FlagDate] )
var _endFlag= ISBLANK ( 'Cases'[ERT End FlagDate] )
IF (
NOT ( _startFlag),
IF (
ISBLANK ( 'Cases'[formofauthorityreceiveddate] ),
DATEDIFF (
IF (
'Cases'[Created Date] > 'Cases'[ERT Start FlagDate],
'Cases'[Created on],
'Cases'[ERT Start FlagDate]
),
IF ( _endFlag , NOW (), 'Cases'[ERT End FlagDate] ),
DAY
),
DATEDIFF ( 'Cases'[ERT Start FlagDate], 'Cases'[ERT End FlagDate], DAY )
),
BLANK ()
)
However, as you can see, it doesn't make much sense. Variables avoid repetitive calculus, but in this case, you don't have repetitive pieces
IF statements work from the top in so it check 1, the 2 etc:
It startts with 1 and IF 'Cases[ERT Start Flag Date] is not blank it goes to section A which starts the 2 check, if it is blank it gos to B and returns a BLANK().
Hi @ArchStanton
The explanation from @jdbuchanan71 is perfect. Regarding your second question, you can use variables in this way:
Days ERT to Outcome =
var _startFlag= ISBLANK ( 'Cases'[ERT Start FlagDate] )
var _endFlag= ISBLANK ( 'Cases'[ERT End FlagDate] )
IF (
NOT ( _startFlag),
IF (
ISBLANK ( 'Cases'[formofauthorityreceiveddate] ),
DATEDIFF (
IF (
'Cases'[Created Date] > 'Cases'[ERT Start FlagDate],
'Cases'[Created on],
'Cases'[ERT Start FlagDate]
),
IF ( _endFlag , NOW (), 'Cases'[ERT End FlagDate] ),
DAY
),
DATEDIFF ( 'Cases'[ERT Start FlagDate], 'Cases'[ERT End FlagDate], DAY )
),
BLANK ()
)
However, as you can see, it doesn't make much sense. Variables avoid repetitive calculus, but in this case, you don't have repetitive pieces
Really grateful for your reply as well, many thanks
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
112 | |
80 | |
73 | |
52 | |
50 |
User | Count |
---|---|
129 | |
123 | |
78 | |
64 | |
60 |