Community Spring Cleaning week is here! Join your fellow Maveryx in digging through your old posts and marking comments on them as solved. Learn more here!
The Product Idea boards have gotten an update to better integrate them within our Product team's idea cycle! However this update does have a few unique behaviors, if you have any questions about them check out our FAQ.

Alteryx Designer Desktop Ideas

Share your Designer Desktop product ideas - we're listening!
Submitting an Idea?

Be sure to review our Idea Submission Guidelines for more information!

Submission Guidelines

Invert suggestions at formula write time - My Fields Should Be First, Not Last!

Hello Alteryx Devs - 

 

When I got to write some scripting in the formula tool, my data stream properties should be the first to be suggested once a user starts typing a letter, not the last. 

 

uppercase(Ad -> gives me:

 

DateTimeAdd

FileAddPaths

PadLeft

PadRight

ReadRegistryString

[Address]

 

I think we would need a dedicated R macro to ascertain the chances anyone in is going to need [ReadRegistryString] before they need a column of their own data that starts with [Ad...]

 

Easy fix.  Makes a big difference.  

 

Thanks.

12 Comments
RachelW
Alteryx Alumni (Retired)

@jdrummey Thanks for the comment. When reviewing ideas requests I try to determine the problem behind the proposed solution. Based on the comments in this thread and discussing the issue with several people outside this thread, it seemed that the biggest problem was that when typing results didn't appear as expected and that results would shift to completely different results rather than narrowing as you typed. When I dug into the implementation of the autocomplete results, I saw that we were only looking at the last two characters typed, which is really frustrating if you are trying to narrow a large list. So to make an improvement to how autocomplete results are displaying, we changed the number of characters we looked at when determining which results to display. We will look back at all characters (and search) until we see a space. To keep the columns at the top of the search list, you can use [ , which will keep the columns at the top even if you type multiple characters in the column name. The [ wasn't helpful before, because as soon as you typed a third character we would drop the [ from our search. This meant you were constantly losing the columns at the top of the search. 

jdrummey
9 - Comet

Thanks, @RachelW!