diff --git a/frontend/public/locales/en/common.json b/frontend/public/locales/en/common.json
index 2575a064fca9c0d304ad11d8675e5a9e07a74088..26411b658b37d2f23dcf9eae0f372c294867a031 100644
--- a/frontend/public/locales/en/common.json
+++ b/frontend/public/locales/en/common.json
@@ -104,7 +104,9 @@
   "activeGuests": "Confirmed guests",
   "activeGuestsDescription": "Make changes to guest roles.",
   "noActiveGuests": "No active guests",
+  "foundNoGuests": "Found no guests",
   "sentInvitations": "Sent invitations",
+  "placeholder": "Search for guest",
   "sentInvitationsDescription": "Invitations awaiting response from guest.",
   "noInvitations": "No invitations",
   "status": "Status",
diff --git a/frontend/public/locales/nb/common.json b/frontend/public/locales/nb/common.json
index d17983e0af5c8ea7c0f063f985503a2d31ee6fc2..6780ea9e28c6dddea35ae2a3c367ac6a5848ced7 100644
--- a/frontend/public/locales/nb/common.json
+++ b/frontend/public/locales/nb/common.json
@@ -104,7 +104,9 @@
   "activeGuests": "Godkjente gjester",
   "activeGuestsDescription": "Her kan du endre på gjesteroller",
   "noActiveGuests": "Ingen aktive gjester",
+  "foundNoGuests": "Fant ingen gjester",
   "sentInvitations": "Sendte invitasjoner",
+  "placeholder": "Søk etter gjest",
   "sentInvitationsDescription": "Invitasjoner som venter på at gjesten skal ferdigstille registreringen.",
   "noInvitations": "Ingen invitasjoner",
   "status": "Status",
diff --git a/frontend/public/locales/nn/common.json b/frontend/public/locales/nn/common.json
index 4cafdbd06dd4dd473bc470578cff20e927babb10..c8751c92bb3037857495e18c00854fee6858a376 100644
--- a/frontend/public/locales/nn/common.json
+++ b/frontend/public/locales/nn/common.json
@@ -104,7 +104,9 @@
   "activeGuests": "Godkjende gjester",
   "activeGuestsDescription": "Endre på gjesteroller.",
   "noActiveGuests": "Ingen aktive gjester",
+  "foundNoGuests": "Fann ingen gjester",
   "sentInvitations": "Sendte invitasjonar",
+  "placeholder": "Søk etter gjest",
   "sentInvitationsDescription": "Invitasjonar som venter på at gjesten skal ferdigstille registreringa.",
   "noInvitations": "Ingen invitasjonar",
   "status": "Status",
diff --git a/frontend/src/routes/sponsor/frontpage/index.tsx b/frontend/src/routes/sponsor/frontpage/index.tsx
index 84bf384beec8237679f82aebde74233c08886392..c509c658304ed5681817b236aa96d877456be24c 100644
--- a/frontend/src/routes/sponsor/frontpage/index.tsx
+++ b/frontend/src/routes/sponsor/frontpage/index.tsx
@@ -5,6 +5,7 @@ import {
   AccordionDetails,
   AccordionSummary,
   Button,
+  InputAdornment,
   Paper,
   Table,
   TableBody,
@@ -12,10 +13,12 @@ import {
   TableContainer,
   TableHead,
   TableRow,
+  TextField,
   Typography,
 } from '@mui/material'
-import { styled } from '@mui/system'
+import { Box, styled } from '@mui/system'
 import { useState } from 'react'
+import SearchIcon from '@mui/icons-material/Search'
 
 import Loading from 'components/loading'
 import Page from 'components/page'
@@ -316,6 +319,8 @@ const InvitedGuests = ({ persons }: GuestProps) => {
 
 const ActiveGuests = ({ persons }: GuestProps) => {
   const [activeExpanded, setActiveExpanded] = useState(false)
+  const [searchHasInput, setSearchHasInput] = useState(false)
+  const [searchGuests, setSearchGuests] = useState<Guest[]>([])
 
   // Show all verified guests
   let guests = persons.length > 0 ? persons : []
@@ -323,6 +328,21 @@ const ActiveGuests = ({ persons }: GuestProps) => {
     guests = guests.filter((person) => person.verified)
   }
   const [t] = useTranslation(['common'])
+
+  const getSponsorGuests = (event: React.ChangeEvent<HTMLInputElement>) => {
+    if (event.target.value) {
+      setSearchHasInput(true)
+      const guestSearch: Guest[] = guests.filter((guest) =>
+        `${guest.first.toLowerCase()} ${guest.last.toLowerCase()}`.includes(
+          event.target.value.toLowerCase()
+        )
+      )
+      setSearchGuests(guestSearch)
+    } else {
+      setSearchHasInput(false)
+      setSearchGuests([])
+    }
+  }
   return (
     <StyledAccordion
       expanded={activeExpanded}
@@ -344,11 +364,37 @@ const ActiveGuests = ({ persons }: GuestProps) => {
         >
           {t('common:activeGuestsDescription')}
         </Typography>
-        <GuestTable
-          guests={guests}
-          emptyText={t('common:noActiveGuests')}
-          marginWidth={1000}
-        />
+        <Box
+          sx={{
+            marginBottom: '1rem',
+          }}
+        >
+          <TextField
+            variant="standard"
+            InputProps={{
+              endAdornment: (
+                <InputAdornment position="end">
+                  <SearchIcon />
+                </InputAdornment>
+              ),
+            }}
+            placeholder={t('placeholder')}
+            onChange={getSponsorGuests}
+          />
+          {!searchHasInput ? (
+            <GuestTable
+              guests={guests}
+              emptyText={t('common:noActiveGuests')}
+              marginWidth={1000}
+            />
+          ) : (
+            <GuestTable
+              guests={searchGuests}
+              emptyText={t('common:foundNoGuests')}
+              marginWidth={1000}
+            />
+          )}
+        </Box>
       </AccordionDetails>
     </StyledAccordion>
   )