Top 10 Skills of 2025 (WEF)
According to the WEF's Future of Jobs Report, Alteryx handles the technical "heavy lifting" so you can focus on analytical thinking.
Problem Solving
- Analytical thinking & innovation
- Complex problem-solving
- Critical thinking & analysis
- Creativity & initiative
- Reasoning & ideation
Self-Management & Tech
- Active learning strategies
- Resilience & flexibility
- Leadership & social influence
- Technology use & monitoring
- Technology design & programming
Designer Interface & Workflow
A workflow is built by dragging tools onto the canvas and connecting them.
Configuration
Size: 255
Input Data Tool
Connects to data files or databases.
- Connect a File or Database: Dropdown to select source.
- File Format: Auto-detected (e.g., .csv, .xlsx).
- Record Limit: Limit rows for testing.
- File must be unlocked.
- File must not be open in another program.
Text Input Tool
Allows manual data entry. Data is saved inside the workflow (.yxmd file).
Browse Tool
Used to view all data and profile its quality. This tool requires the workflow to be run.
Data Profiling (Quality Bar)
- ■ Green (OK): Good data.
- ■ Red (Not OK): Whitespace/errors.
- ■ Yellow (Null): Missing data.
Statistics Profile
Select a column in Results to see:
- Min/Max: 46.11 - 832.11
- Average: 135.34
- Nulls: 0 (0.00%)
- Unique: 225
Select Tool
The most versatile tool for shaping your data structure. Click rows below to reveal details.
| Action | Configuration | Why use it? |
|---|---|---|
| Remove | Uncheck the box next to the field. | Limit data to necessary fields. Improves speed. CLICK TO REVEAL |
| Rename | Type in the "Rename" column. | Make field names human-readable ("CustID" to "Customer ID"). |
| Reorder | Select field and use Up/Down arrows. | Organize data logically. |
| Change Type | Dropdown in "Type" column. | Fix data types (e.g., convert "Spend" from String to Double). |
Output Data Tool
Writes results to a file or database.
- Create New File
- Overwrite Existing File
- Append to Existing File
- Spreadsheets (Excel, CSV)
- Alteryx Database (.yxdb) - Fastest!
- Tableau (.hyper, .tde)
- Databases (SQL, Oracle)
Data Types
Choosing the right data type is critical.
Numeric Types
| Type | Description | Best For... |
|---|---|---|
| Byte | Small integer (0-255). | Small IDs. |
| Int16 / Int32 | Standard Integers. | Counts, Years. |
| Int64 | Large Integers. | Very large IDs. |
| Fixed Decimal | Specific precision. | Currency. |
| Double DEFAULT | Floating point numbers. | Default for most numbers. |
String Types
| Type | Details |
|---|---|
| String | Fixed length, ASCII only. |
| WString | Fixed length, Unicode. |
| V_String | Variable length. Efficient storage. |
| V_WString DEFAULT | Variable length. Any character. Safest choice. |
Conversion Errors
Occur when converting a field to a specific data type but records don't match.
Action: Convert to Integer (Int16)
Result: "Five" is not a number. Alteryx replaces it with NULL and reports a conversion error.
- Errors (Red): Workflow failed.
- Conv. Errors (Orange): Data loss (Nulls created).
- Warnings (Yellow): Something might be wrong.
Part 2: Paths
11. The Folder Source of Truth
In most professional projects, your Workflow and your Data are kept in separate sub-folders for organization. Click the folders to navigate and see the Path Translation update.
12. Core Path Logic
How you write your path directly impacts if your project is shareable.
Absolute Exact Address
Starts from your computer's root drive (like C:\) and follows every folder.
Relative Local Directions
Starts from where your workflow is saved, using special characters to navigate.
Relative Paths Cheat Sheet
Look in the exact same folder as the workflow.
Step out of workflow folder, then into Data.
Step out twice. For deeply nested workflows.
13. Map Analogy: Dropping Pin vs Directions
Think of an Absolute Path as providing an exact, real-world address (like "3523 5th Ave, NY"). A Relative Path is like giving local directions starting from your front door ("Walk North, then turn East") to reach Le Data Bistro.
14. Quick Knowledge Check
Follow the visual logic to pick the correct path, then click an answer to flip the card.
Absolute or Relative?
You see this in an Input tool:
Meaning of ..\ ?
Based on the diagram, your path is: ..\Data\sales.xlsx
Deeply Nested
Workflow is in Proj/Docs/WF/. The target file.csv is in Proj/Data/. Path?
Ready to apply what you've learned?