Skip to main content

Power BI

Needs Votes

Change Intellisense Autocomplete to not use periods as a place marker for function insertion in M

Vote (16) Share
Aaron Watsky's profile image

Aaron Watsky on 09 Dec 2020 18:43:25

Currently if you type a function in M with the period Intellisense looks at the period as a placemarker for the function. For instance if I type:

= Text.

then select the option for Table.SelectRows I end up with

=TextText.SelectRows.

Instead of this behavior, have Intellisense replace the entire function so we end up with

=Text.SelectRows