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 following (code in red) works when run in the Power Bi Desktop version, but as soon as you replace it by the variable name, which contains the same code, Power BI generates an error. In a nutshell, the column [UnreachableSince] is of data type TEXT containing textual representations of DATETIME values and other non-datetime values (I know and there is nothing I can do about this).
To intercept the DATETIME values, therefore an IF() is used. It all works fine until you decide to use the variable name in place of the inline code inside the nested IF().
So this OK:
DATEDIFF(DATEVALUE([UnreachableSince]) + TIMEVALUE([UnreachableSince]), [ClosedDT], SECOND)
But this NOT OK!
DATEDIFF(__unreachable_dt, [ClosedDT], SECOND),
Code here (sorry but can't add colors when using Insert/Edit code sample from this editor toolbar):
ADDCOLUMNS(
GROUPBY(
ADDCOLUMNS(
CALCULATETABLE(
SELECTCOLUMNS(
...
),
FILTER(
...
)
),
"DownTime", IF ( [ErrorCategory] == "Unreachable",
VAR __unreachable_dt = DATEVALUE([UnreachableSince]) + TIMEVALUE([UnreachableSince])
VAR __unreachable_dt_in_secs = DATEDIFF(__start_date, __unreachable_dt, SECOND)
RETURN
IF( __unreachable_dt_in_secs >= 0,
DATEDIFF(DATEVALUE([UnreachableSince]) + TIMEVALUE([UnreachableSince]), [ClosedDT], SECOND),
BLANK() //DATEDIFF([CreationDT], [ClosedDT], SECOND)
),
DATEDIFF([CreationDT], [ClosedDT], SECOND)
)
),
[AssetName],
"DownTime", SUMX(CURRENTGROUP(), [DownTime])
),
"% up", 1 - ([DownTime] / __in_service_time)
)
So am I imagining things, or isn't this a DAX interpreter bug?
PBI Desktop vs = July 2022
Hi, @Element115
Although variables can be used anywhere, however, their result might not be always the same. Because they are evaluated in the context in which they are written.
Please refer to this thread for more details.
Caution When Using Variables in DAX and Power BI
Best Regards,
Community Support Team _ Eason
Hello, any updates?
One more thing... I read RADACAD's explanation, however it does not apply here. Look again carefully at the code I posted:
"DownTime", IF ( [ErrorCategory] == "Unreachable",
VAR __unreachable_dt = DATEVALUE([UnreachableSince]) + TIMEVALUE([UnreachableSince])
VAR __unreachable_dt_in_secs = DATEDIFF(__start_date, __unreachable_dt, SECOND)
RETURN
IF( __unreachable_dt_in_secs >= 0,
DATEDIFF(DATEVALUE([UnreachableSince]) + TIMEVALUE([UnreachableSince]), [ClosedDT], SECOND),
BLANK() //DATEDIFF([CreationDT], [ClosedDT], SECOND)
),
__unreachable_dt is declared right before the RETURN statement and when referenced in the RETURN block inside de DATEDIFF() inside the IF() as the 2nd parameter, the result is not that the computation is wrong.
In other words, the block of code is
IF( condition,
VAR __declaration0 = ...
VAR __declaration1 = ...
RETURN
IF( __declaration1 >= 0, // no issues here referencing the second variable
DATEDIFF( __declaration0, ... ) // issue here CAN'T FIND THE VARIABLE!!!
...
Is this really as it should be???
The result is that the interpreter complains the variable does not exist or is not defined! Two very different things, yes?
TBH what you are saying makes no sense to me: variables
are evaluated in the context in which they are written.
Variables should be visible in the scope in which they are declared, period. Are you saying that DAX scoping isn't following what we are used to with all major programming languages out there?
In any case, all my variables are usually declared top level, ie right after the 'MeasureName = ' line. Therefore I would expect this scope to be visible all the way down to the RETURN statement.
Isn't it so?
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
8 | |
8 | |
8 | |
6 |
User | Count |
---|---|
14 | |
12 | |
11 | |
9 | |
9 |