# Auto-Fill Feature

**URL:** https://community.glideapps.com/t/auto-fill-feature/49638
**Category:** Ask for Help
**Created:** [September 19, 2022, 12:59pm UTC](https://community.glideapps.com/t/auto-fill-feature/49638 "2022-09-19T12:59:02Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Padmaksh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/padmaksh/32/47717_2.png) [@Padmaksh](https://community.glideapps.com/u/Padmaksh)
#### Post date: [September 19, 2022, 12:59pm UTC](https://community.glideapps.com/t/auto-fill-feature/49638/1 "2022-09-19T12:59:02Z")

</div>

I am working on a database application and I have these columns Roll No.; Student Name: Parent Name.  
I have a **unique numeric value of Roll No**. for each of the record and I want to implement an **auto-fill** feature for as the user enters the Roll No. for the student, it auto fills the related value in the Student Name and Parent Name fields… How can I do that?

---

<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: [September 19, 2022, 1:03pm UTC](https://community.glideapps.com/t/auto-fill-feature/49638/2 "2022-09-19T13:03:32Z")

</div>

Is all this happening inside a form screen, or do you just have some input components on a details screen?

Either way, you’ll need to write the entered Roll No. to a user specific column. You can then use the entered value to build a relation to whichever table holds the other two values, and fetch them via lookup columns.

If this is being done inside a native form screen, user specific columns cannot be used and so you would need to switch to a [custom form](https://community.glideapps.com/t/how-do-i-create-a-custom-form/25014).

---

<div class="post-metadata">

### Author: ![Padmaksh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/padmaksh/32/47717_2.png) [@Padmaksh](https://community.glideapps.com/u/Padmaksh)
#### Post date: [September 20, 2022, 10:26am UTC](https://community.glideapps.com/t/auto-fill-feature/49638/3 "2022-09-20T10:26:46Z")

</div>

This is supposed to be done on a form screen, I will try this out. Thanks for your help. 😊
