You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the editor, #"SomeValue" gets a red squiggle and a tooltip of "Cannot find the name '#"SomeValue"', did you mean 'SomeValue'? powerquery(Error.UnknownIdentifier)".
The text was updated successfully, but these errors were encountered:
Expected behavior
A quoted reference to an identifier which was defined as unquoted should be recognized as the same.
Actual behavior
If you define an identifier without quotes and then reference it using the quoted form you get an error.
To Reproduce
shared SomeValue = 1;
shared AnotherValue = #"SomeValue";
In the editor, #"SomeValue" gets a red squiggle and a tooltip of "Cannot find the name '#"SomeValue"', did you mean 'SomeValue'? powerquery(Error.UnknownIdentifier)".
The text was updated successfully, but these errors were encountered: