# Solution to Prevent Duplicate Entry

**URL:** https://community.glideapps.com/t/solution-to-prevent-duplicate-entry/17467
**Category:** Ask for Help
**Created:** [October 22, 2020, 7:32pm UTC](https://community.glideapps.com/t/solution-to-prevent-duplicate-entry/17467 "2020-10-22T19:32:41Z")
**Posts on this page:** 1
**Showing post:** 42

<div class="post-metadata">

### Author: ![Darren\_Murphy](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/darren_murphy/32/47326_2.png) [@Darren\_Murphy](https://community.glideapps.com/u/Darren_Murphy)
#### Post date: [August 26, 2021, 3:42pm UTC](https://community.glideapps.com/t/solution-to-prevent-duplicate-entry/17467/42 "2021-08-26T15:42:50Z")

</div>

I’m not sure I understand, but… a question. Are you using a custom form or a native Glide form?  
If you’re using native forms there is no way to prevent duplicate entries. This is because nothing is written to the table until the form is submitted, and so there is no way to detect the duplicate.

This is where custom forms come in. With a custom form, you target your input components at User Specific Columns, and the values are written to those columns immediately. You can then use those to detect duplicates _before_ the form is submitted and take appropriate action.

Here is a concept app that demonstrates how to do it:

> [@How do I create a custom form?](https://community.glideapps.com/t/how-do-i-create-a-custom-form/25014):
>
> I’m just dropping this here so I have something to refer people to when they ask. This is a simple concept app (copyable), that demonstrates the following techniques: Building custom forms for adding and editing list items (as an alternative to the native forms provided by Glide) Preventing duplicate new entries using [User Specific Columns](https://docs.glideapps.com/all/reference/data-editor/user-specific-columns) and [Relations](https://docs.glideapps.com/all/reference/data-editor/computed-columns/relation-column) Enforcing mandatory input items The use of visibility conditions and user specific booleans to control user flow There is nothing particula…

---

_[View the full topic](https://community.glideapps.com/t/solution-to-prevent-duplicate-entry/17467)._
