Replies: 3 comments
-
Great suggestion! |
Beta Was this translation helpful? Give feedback.
0 replies
-
I like it too! |
Beta Was this translation helpful? Give feedback.
0 replies
-
Now available in 3.12.0, thanks for the suggestion! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
It would be great to have a feature that highlight unused variables in DAX code. By unused variables I mean variables that are not included into a final RETURN statement directly or via other variables.
VAR a = 1
VAR b = 2
VAR c = 3
VAR d = a + b
RETURN d
Highlight variable c.
Beta Was this translation helpful? Give feedback.
All reactions