--- title: "Joining from Event Surveys to Registrations" slug: "joining-from-event-surveys-to-registrations" status: "new" updated: 2026-07-21T20:38:15Z published: 2026-07-21T20:38:15Z canonical: "knowledge.technolutions.net/joining-from-event-surveys-to-registrations" stale: true --- > ## Documentation Index > Fetch the complete documentation index at: https://knowledge.technolutions.net/llms.txt > Use this file to discover all available pages before exploring further. # Joining from Event Surveys to Registrations Event survey responses are stored as form responses. When a registrant submits an event survey, the survey response can be connected back to the related event registration by comparing the survey response's record value to the registration form response GUID. Use an independent subquery join when you need a query that starts from event survey responses and then returns details from the associated event registration. For background on configuring surveys, see [Event Surveys](https://knowledge.technolutions.net/docs/en/event-surveys). For more information about joins, see [Joins](https://knowledge.technolutions.net/docs/en/joins). > [!TIP] > ⭐ Get Inspired > > This article was adapted from [a post by Technolutions staff](https://community.technolutions.net/get-inspired/post/joining-from-event-surveys-to-registrations-R7N5c8jRF81dxko) in the Slate Community Forums' Get Inspired space. Have a great idea for a Get Inspired post? [Let us know](https://community.technolutions.net/get-inspired/new?post_type=gnHx7As1gZ8r6Ld)! ## Create the join 1. Start a query that returns one row per event survey response. One way to do this is to select **New Query** from the event survey form. 2. Select the subquery button next to **Join**. 3. Set **Name** to **Associated Event Registration**. 4. Set **Type** to **Independent subquery**. 5. Set **Category** to **Related**. 6. Set **Base** to **Form Responses**. ## Add the comparison filter 1. Add a subquery filter. 2. Set **Name** to **Event Survey Record = Form Response GUID**. 3. Set **Aggregate** to **Comparison**. 4. Add the **Record GUID** export from the event survey response. 5. Add the **GUID** export from the form response. 6. Add both exports to the comparison and select **Save**. ![Comparison filter that compares the event survey record GUID with the form response GUID](https://cdn.us.document360.io/cd8ea7a6-07f3-4846-a554-627ac016d3e3/Images/Documentation/02-r2XJD7MqyDfnBl4oy5Kns.webp) ## Use the joined base 1. Set **Base** to **Form Response (independent subquery)**. 2. Select **Save**. 3. Add exports or filters from the joined form response base as needed for the event registration data you want to return. ![Joined base set to Form Response independent subquery](https://cdn.us.document360.io/cd8ea7a6-07f3-4846-a554-627ac016d3e3/Images/Documentation/03-hgHi9VtGzRFUxcewrgtzK.webp) ## Result The independent subquery join connects each event survey response to its associated event registration. After the join is saved, the query can return event registration details from the joined form response while still using the event survey response as the primary row.