Power-Fx
Power-Fx copied to clipboard
ShowColumns() doesn't work properly with Display Name Identifier.
First(ShowColumns(Accounts, 'Account Name')).'Account Name' should work.
but it only allows logical names, Ie forces to use First(ShowColumns(Accounts, 'Account Name')).name
Add back the below test, re-weritten with ShowColumns() to DisplayNameTests.cs>ValidateDisplayNames
[InlineData("First(Nested.Inner).Inner", "First(NestedDisplay.InnerDisplay).InnerDisplay", true)]
[InlineData("First(NestedDisplay.InnerDisplay).InnerDisplay", "First(Nested.Inner).Inner", false)]