Be sure to review our Idea Submission Guidelines for more information!
Submission GuidelinesHello,
After used the new "Image Recognition Tool" a few days, I think you could improve it :
> by adding the dimensional constraints in front of each of the pre-trained models,
> by adding a true tool to divide the training data correctly (in order to have an equivalent number of images for each of the labels)
> at least, allow the tool to use black & white images (I wanted to test it on the MNIST, but the tool tells me that it necessarily needs RGB images) ?
Question : do you in the future allow the user to choose between CPU or GPU usage ?
In any case, thank you again for this new tool, it is certainly perfectible, but very simple to use, and I sincerely think that it will allow a greater number of people to understand the many use cases made possible thanks to image recognition.
Thank you again
Kévin VANCAPPEL (France ;-))
Thank you again.
Kévin VANCAPPEL
Hello!
Just another QOL change from me today.
When building a workflow - just for fun sometimes I like to make mistakes. It's never by accident I promise 😎
Now theoretically, if I did make a mistake, and put a tool in the wrong place (or want to refactor, or want to move a select earlier in the workflow etc), I would typically right click, cut and connect around, and then right click the connection I want to paste onto. This works fine, however, some users are unaware of it, and it can still be a bit of a pain.
What would be really nice, is if we could hit ctrl and click/drag a tool, to move it elevated of connections. I have attempted to create a couple of gifs to illustrate.
The current method of moving a tool within a workstream:
What I'd love, if you could hold ctrl + drag:
Cheers!
Owen
I know there is an idea for Dynamic Summarize, however I think with only small change to Summarize tool this could be achieved.
If we set the Summarize to Group by all our dimensions but then use ListBox + Action to control which dimensions we want to select - wouldn't it be nice (ahh Beach Boys comes to mind) to be able to tell Summarize tool that if the dimension in group by is not found just ignore it? At the moment it throws an error. I just think such small configuration would achieve this, right?
Please let me know what you think
Hi
I'm really missing a search in the medata phane?
If I am on data phane:
If im browsing though metadata:
Hello,
Please add UI-related Themes to choose from such as a Dark Theme, so that all aspects of the UI changes accordingly.
Without a Dark Theme, it is very difficult to work in Designer for a long time.
Add these themes under User Settings --> Themes tab
Thanks!
When numerous formulae exist within a single formula object, being able to "Expand All / Collapse All" would be most welcomed. :-)
Also - the ability to Disable/Enable a single formula in the formula object - also very nice to have.
I would to suggest to add a configuration in the Block Until Done tool, which allow the user to prioritize the release of a data stream through multiple Block Until Done tools in the same module.
In the example below, the objective is to update multiple sheets in a single Excel workbook. Each sheet is a different data stream, that cannot be unioned together, therefore making the filtering of a single stream feeding into multiple Block Until Done from that filter solution impossible.
What I would like to be able to do is have a configuration, where Block Until Done #2 will not allow the data stream to pass through until Block Until Done #1 is complete, Then Block Until Done #3 will not pass through the data stream until Block Until Done #2 is complete, and so forth through the all the Block Until Done instances.
Hello!
This is along the same lines as my other thread:
https://community.alteryx.com/t5/Alteryx-Designer-Ideas/Allow-For-Drag-and-Drop-in-The-Interface-Des...
I love building Analytic Apps, and i wish it was just a little bit quicker to do.
Currently when adding an element from the dropdown to the interface designer:
it will always be added to the bottom of the interface:
And requires moving manually. It would be great if depending on where you have selected on the interface, the element is created. For instance, i would like to select one of my elements:
Hit add - Label:
And the label be created under my element:
Thanks,
TheOC
I want modification of the Email Tool to support running it at a specific point, defined by developer, within a workflow where currently "The Email tool will always be the last tool to run in a workflow".
We use the tool to send notification of completion of jobs and sometimes attach outputs but we would like to be able to also send notifications at the start or at key points within a workflows processing. Currently the email tool is forced to be the last tool run in a flow, even if you use block until done tool to force order of path execution to hit the email tool first.
If we could add a setting to the configuration to override the current default, of being the last tool run, to allow it to run at will within a flow that would be awesome! And of course we would want the same ability for texting, be it a new feature of the email tool or a new tool all its own.
The Texting option refers to an issue in Andrew Hooper's post seeking enhancement of the email tool for texting, search on "Email tool add HTML output option" or use link...
Collections in GALLERY by default must be sorted alphabetically or by creation data . Currently its displayed randomly and every time I have to do some kind of SORTING to get to what I want
Thanks
When working with APIs it is quite common to use the JSON parse tool to parse out the download data which has been returned from the API. However the JSON data may be missing key:value pairs as they are not in the response. This causes issues with downstream tools where there are missing fields. The current workaround for this is to use either the Crew macro Ensure fields, or union on a text input file to force the missing fields downstream.
The issue with this is:
1) Users may not be aware of the requirement to ensure fields are present
2) You need to know the names of all the fields to include in the ensure fields macro
Therefore the feature request is to add an option to the JSON parse tool to add the model schema as an input.
For example with the UK companies house API, to get a list of all the directors at a company the model schema is
{
"active_count": "integer",
"etag": "string",
"items": [
{
"address": {
"address_line_1": "string",
"address_line_2": "string",
"care_of": "string",
"country": "string",
"locality": "string",
"po_box": "string",
"postal_code": "string",
"premises": "string",
"region": "string"
},
"appointed_on": "date",
"country_of_residence": "string",
"date_of_birth": {
"day": "integer",
"month": "integer",
"year": "integer"
},
"former_names": [
{
"forenames": "string",
"surname": "string"
}
],
"identification": {
"identification_type": "string",
"legal_authority": "string",
"legal_form": "string",
"place_registered": "string",
"registration_number": "string"
},
"links": {
"officer": {
"appointments": "string"
},
"self": "string"
},
"name": "string",
"nationality": "string",
"occupation": "string",
"officer_role": "string",
"resigned_on": "date"
}
],
"items_per_page": "integer",
"kind": "string",
"links": {
"self": "string"
},
"resigned_count": "integer",
"start_index": "integer",
"total_results": "integer"
}
But fields such as "resigned_on" are not always present in the data if there are no directors who have resigned. Therefore to avoid a user missing the requirement for unidentified fields needing to be added, if there was an optional input which took the model schema and therefore created the missing fields would greatly improve the API development process and minimise future errors being encountered once a workflow is in production.
After evolving my workflows to provide email alerts after they run with errors I thought it would be a good idea to include conditional alerts. Meaning: incorporating formulas(if then) to determine when the alert will run. Currently, the only options are "Before Run, After Run, After Run with Errors, After Run Without Errors, Disabled".
Experts -
While developing code in the formula tool (and perhaps elsewhere) it would be helpful to have the "parenthesis highlighting" function found in database software such as SSMS, DBeaver, SQL Developer etc. I.e. put the cursor next to a closing paren and the corresponding opening paren gets highlighted (or vice versa) - conversely if there is no corresponding paren nothing gets highlighted and you instantly know you've got a bug to fix (and where to fix it)!
Hi there team,
When using the sort tool - it's impossible to really develop much speed and muscle memory because you're always having to switch between keyboard and mouse.
Can we please add to the sort tool to make this a hyper-quick experience for the user?
Current Experience:
I currently have the select tool selected want to add a sort after this to sort on 3 columns:
Proposed alternative path:
I want to add a sort tool immediately after the currently selected tool:
As we all know - when you develop muscle memory for an IDE - not only does this remove the barrier between thought and delivery - but it also makes it more sticky as a platform (you don't want to change products because you are used to the keyboard shortcuts on this one) - so not only would this improve user speed - it would also make sense from an economic perspective for retaining customers through stickiness.
cc: @Hollingsworth
Add a search or find function that looks for content within a tool rather than just the tool number. e.g. ctrl Find, to look for any tool that uses a keyword or field in the formula/join/etc. This would save me a boatload of time editing, updating, and troubleshooting my workflows.
The ‘Existing File Action’ configuration setting needs to address the situation where columns change.
Currently the following options exist, with instruction as follows at https://help.alteryx.com/20213/designer/microsoft-power-bi-output-tool:
There are two expectations when using this tool:
1. Reloads are built to completely replace the contents of a dataset, i.e. an Append is not being performed
2. Columns will change over time with continued development
There is therefore a need for an ‘Overwrite (update columns)’ option. However, when this Existing File Action is used it updates column names, but it does not delete the contents prior to upload. An append onto the existing data, but with new column names is therefore performed.
I acknowledge that the instructions do not say that existing rows are deleted.
This leaves the need to perform a workaround:
If step 2 is not done data will be appended which would lead to duplication issues.
Either these Existing File Actions need to be renamed to be clearer as to their operation, or preferably an option that updates the columns and sets up new (non-appended) data is required.
When creating a formula with the formula tool, it would be useful to be able to quickly tab into the data type column, then press D for Double and select this quickly.
Right now, you cannot use the keyboard to quickly type-ahead in this field, so every double field requires you to select, drop down, move the mouse to the bottom of the scroll window, click scroll down, then mouse back up to D for double.
(or "S" for Spatial etc - this is standard for most drop-down boxes)
For performance, it would be great if designers could mark Batch Macros safe for parallel execution. E.g. the macro will not dead-lock itself accessing inputs / outputs.
Either Alteryx would run all iterations simultaneously, or to what available resources permit.
My use case here is a rule table (DMN) which execution against a data set, each rule needs to be executed against each row. The rules are expressed as formulas and are joined through the Dynamic Replace tool.
However we need to check whether inputs match multiple rules these may violate the matching process, so I run each rule through the batch macro to find matches. Once all matches are processed then validation on the matching occurs.
The input could be 30k rows, and there are about 80 rules which my Alteryx takes about five minutes to execute.
In order to make it easier to find workflow logs and be able to analyze them we would suggest some changes:
This would facilitate when trying to find the job logs.
To facilitate reading the log we would suggest the following changes:
For the example of current and suggested log:
Please consult the document in attachment.
In the suggested format the log would be [TIMESTAMP] [ERRORLEVEL] [ELAPSEDTIME] [MESSAGE]
Hi team, Can I have dropdown for Action tool link to container?
a: Check to disable, uncheck to enable
b. Check to enable, uncheck to disable
it was very confuse for me when i want to do a reverse way. it is good to if it able to apply to other interface.
Would be great to have a dynamic input tool that is a SFDC connector to update SOQL queries based on the fly.
Benutzer | Anzahl |
---|---|
32 | |
6 | |
5 | |
3 | |
3 |