Welcome to the unofficial source of resources for Salesforce’s Flow product. Here, members of the community seek to provide a starting point for all useful Flow information.
Note that this is NOT an official Salesforce website and that some of the content available here is not official Salesforce-supported technology.
Installable Flow Screen Components
Installable Flow Actions
Flow Knowledge- Wiki
NEW! Flow Orchestrator
Flow Wiki |
Learn Flow |
Extend Flow
|
Developing for Flow |
|
Flow on the Idea Exchange |
String Changers: URL Encoding and Number Formatting
Suppose you need a way to easily take a string with spaces and URL-encode it so you can put it in a URL (for example: ‘my cat’ becomes ‘my+cat’). You also have some numbers in string form that you want to add commas to (i.e convert 2348934 to 2,348,934). In Apex, these are super simple […]
Easy “IN” Filters in Flow with the FilterCollection Flow Action
Intro Video SOQL provides a useful IN operator that filters the query on a specific set of values: You currently can’t do this directly in the Flow Builder Get Records element, but you can install this FilterCollection Flow Action to provide the capability. Out of the box, this action is set up to support standard […]
TDX Session Video:Building Advanced Flows with Choices, Loops, and New Apex-defined Types
Here’s a broadcast of one of the two Advanced Flow sessions from TDX.
Flow Action: Get Picklist Values
In my spare time I’m experimentally rebuilding Approval Processes on top of Flow and I recently had a need for a way in Flow to retrieve a set of picklist values that I could then work with. So I built a simple Flow Action to enable all flow designers to do this without code. It’s […]