# How to make one screen show only after entering a digit into another screen

**URL:** https://community.thunkable.com/t/how-to-make-one-screen-show-only-after-entering-a-digit-into-another-screen/477433
**Category:** Questions about Thunkable X
**Tags:** design, beginner, howto, textinput
**Created:** [February 21, 2020, 6:30pm UTC](https://community.thunkable.com/t/how-to-make-one-screen-show-only-after-entering-a-digit-into-another-screen/477433 "2020-02-21T18:30:10Z")
**Posts on this page:** 9
**Page:** 1

<div class="post-metadata">

### Author: ![rubenmjosephs8asjp](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/rubenmjosephs8asjp/32/60913_2.png) [@rubenmjosephs8asjp](https://community.thunkable.com/u/rubenmjosephs8asjp)
#### Post date: [February 21, 2020, 6:30pm UTC](https://community.thunkable.com/t/how-to-make-one-screen-show-only-after-entering-a-digit-into-another-screen/477433/1 "2020-02-21T18:30:10Z")

</div>

I want to make it so that to reach the second screen, you have to enter a digit into the first screen. I have been trying to do this myself, but to no prevail. Here is how it all works:

On one screen, you enter a value, and the local storage carries it over to the next screen. This is the text input that you enter a number into -

 ![Screenshot 2020-02-21 at 18.02.37](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/f/a/fa61e1dcddf3872fe10c9f8b1a24be6a4bc46b4b.png)  
And then these blocks transfer the number to the next screen -  
 ![Screenshot 2020-02-21 at 18.02.49](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/9/3/9395dfdfa78dd171e85b3581d5d2002c166b0f9b.png)  
And these blocks receive it on the other screen  
 ![Screenshot 2020-02-21 at 18.04.14](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/1/c/1c194c9c6ca2dcd37a684f2022679b40c3fabc38.png)

---

<div class="post-metadata">

### Author: ![jared](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/jared/32/138473_2.png) [@jared](https://community.thunkable.com/u/jared)
#### Post date: [February 21, 2020, 6:56pm UTC](https://community.thunkable.com/t/how-to-make-one-screen-show-only-after-entering-a-digit-into-another-screen/477433/2 "2020-02-21T18:56:43Z")

</div>

Hello @rubenmjosephs8asjp, thanks for posting your question to the community! I have put together a sample app for you.  
[https://x.thunkable.com/copy/6c0a08534c96c0f6064151d0e3f0ca94](https://x.thunkable.com/copy/6c0a08534c96c0f6064151d0e3f0ca94)

pull out the drawer navigator and navigate to screen “scr\_MoveTexttoAnotherScreen”

you’ll want to replace

 ![Screen Shot 2020-02-21 at 1.42.10 PM](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/d/5/d51e075091f14b8327d03721b7110bf8477fb0db.png)

with this

![Screen Shot 2020-02-21 at 1.42.55 PM](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/c/0/c0dc40771fec8bd677f65184eb492b623f631480.png)  
in my example, i also show how to do this using either a variable or the localStorage. The logic blocks you used would only work if you entered “null” into the text input I belive. The red text box, when used, outputs a true/false value and therefore works in the if/then statements.

---

<div class="post-metadata">

### Author: ![kartik14](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/kartik14/32/44782_2.png) [@kartik14](https://community.thunkable.com/u/kartik14)
#### Post date: [February 22, 2020, 3:26am UTC](https://community.thunkable.com/t/how-to-make-one-screen-show-only-after-entering-a-digit-into-another-screen/477433/3 "2020-02-22T03:26:22Z")

</div>

Hi, @rubenmjosephs8asjp! 👋

* * *

What you are doing, is checking the _empty-status_ of the box after saving in Local\_Storage.  
This won’t work, because it would save first, and then show error message _Please enter your goal_, if text\_input is _null_.

Try these blocks -

![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/3/4/34cc712890ffb1dc2527d3d0de26bc7693256000.png)

* * *

Along with above blocks, to avoid input of any character other than numbers, make sure you have that textinput’s `Keyboard Type` to `numeric` -

![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/e/d/ede3acefda9323dd6b1464f132d58d6d8b0e7921.png)

* * *

Hope I helped you! 😺  
Good Luck! 🎉

Thanks! 😊

---

<div class="post-metadata">

### Author: ![rubenmjosephs8asjp](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/rubenmjosephs8asjp/32/60913_2.png) [@rubenmjosephs8asjp](https://community.thunkable.com/u/rubenmjosephs8asjp)
#### Post date: [February 22, 2020, 10:08am UTC](https://community.thunkable.com/t/how-to-make-one-screen-show-only-after-entering-a-digit-into-another-screen/477433/4 "2020-02-22T10:08:51Z")

</div>

@jared @kartik14 I have tried both ways, with the variable and with the local storage, but in both instances, it switches to the screen where you enter the digit, you put in the number and it takes you to the other screen, but before the number can appear on the screen, it takes you back to the number input screen.

---

<div class="post-metadata">

### Author: ![jared](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/jared/32/138473_2.png) [@jared](https://community.thunkable.com/u/jared)
#### Post date: [February 22, 2020, 3:00pm UTC](https://community.thunkable.com/t/how-to-make-one-screen-show-only-after-entering-a-digit-into-another-screen/477433/5 "2020-02-22T15:00:17Z")

</div>

@rubenmjosephs8asjp If you post how you’ve tried it differently with screenshots or a share link to the app, it may be able to prove more precise assistance information your use case. Both of our methods, @kartik14 and mine, should work based on your use description. Perhaps you’ve entered blocks incorrectly?

I am just spitballing here, but maybe you need to enter a delay or move a control block for navigation to a different area, but like many have said on this forum, it’s super difficult to accurately diagnose/help without seeing what you have put into your blocks.

---

<div class="post-metadata">

### Author: ![eoinparkinson](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/eoinparkinson/32/143769_2.png) [@eoinparkinson](https://community.thunkable.com/u/eoinparkinson)
#### Post date: [February 22, 2020, 10:42pm UTC](https://community.thunkable.com/t/how-to-make-one-screen-show-only-after-entering-a-digit-into-another-screen/477433/6 "2020-02-22T22:42:44Z")

</div>

Are you saving the text input long term? You could just use a stored variable. If it’s short term, use an app variable.

---

<div class="post-metadata">

### Author: ![rubenmjosephs8asjp](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/rubenmjosephs8asjp/32/60913_2.png) [@rubenmjosephs8asjp](https://community.thunkable.com/u/rubenmjosephs8asjp)
#### Post date: [February 23, 2020, 9:40am UTC](https://community.thunkable.com/t/how-to-make-one-screen-show-only-after-entering-a-digit-into-another-screen/477433/7 "2020-02-23T09:40:18Z")

</div>

Thanks @eoinparkinson, I’ll make sure to do this

---

<div class="post-metadata">

### Author: ![rubenmjosephs8asjp](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/rubenmjosephs8asjp/32/60913_2.png) [@rubenmjosephs8asjp](https://community.thunkable.com/u/rubenmjosephs8asjp)
#### Post date: [February 23, 2020, 9:44am UTC](https://community.thunkable.com/t/how-to-make-one-screen-show-only-after-entering-a-digit-into-another-screen/477433/8 "2020-02-23T09:44:00Z")

</div>

@jgibb20189 Sorry, I’m quite new at this. Here is the link: [Thunkable](https://x.thunkable.com/copy/4c76b9e580dd69dde45b1c322c100f6f) and the blocks i’m focusing on are  
 ![Screenshot 2020-02-23 at 09.24.32](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/c/3/c3c5b677fb834031a4b5791352b121d17643f663.png) ![Screenshot 2020-02-23 at 09.24.20](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/7/8/78f4807851042f762a0104e3c35094745eca3829.png) !

---

<div class="post-metadata">

### Author: ![ioannis](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/ioannis/32/146956_2.png) [@ioannis](https://community.thunkable.com/u/ioannis)
#### Post date: [November 8, 2024, 11:40am UTC](https://community.thunkable.com/t/how-to-make-one-screen-show-only-after-entering-a-digit-into-another-screen/477433/9 "2024-11-08T11:40:54Z")

</div>


