# What Am I Doing Wrong?

**URL:** https://community.thunkable.com/t/what-am-i-doing-wrong/76130
**Category:** Questions about Thunkable X
**Created:** [May 10, 2019, 10:01pm UTC](https://community.thunkable.com/t/what-am-i-doing-wrong/76130 "2019-05-10T22:01:04Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![delee\_techdeveloper](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/delee_techdeveloper/32/29616_2.png) [@delee\_techdeveloper](https://community.thunkable.com/u/delee_techdeveloper)
#### Post date: [May 10, 2019, 10:01pm UTC](https://community.thunkable.com/t/what-am-i-doing-wrong/76130/1 "2019-05-10T22:01:05Z")

</div>

What am I doing wrong? What isn’t my date and day showing up in my app. Please see the attachment.

 ![52%20PM](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/d/e/de4d5ea18a213d7268452daec9d24f110d2b300b.png)

---

<div class="post-metadata">

### Author: ![darren](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/darren/32/69854_2.png) [@darren](https://community.thunkable.com/u/darren)
#### Post date: [May 10, 2019, 11:16pm UTC](https://community.thunkable.com/t/what-am-i-doing-wrong/76130/2 "2019-05-10T23:16:02Z")

</div>

Your ‘Test’ block looks a little concerning. Based on what I see, it doesn’t produce a True or False value.

You should have some kind of conditional check like _is item from list == 0_

Happy Coding!

---

<div class="post-metadata">

### Author: ![actech](https://avatars.discourse-cdn.com/v4/letter/a/3d9bf3/32.png) [@actech](https://community.thunkable.com/u/actech)
#### Post date: [May 11, 2019, 7:22am UTC](https://community.thunkable.com/t/what-am-i-doing-wrong/76130/3 "2019-05-11T07:22:34Z")

</div>

If you do not see the day, then what is shown in the label lblDay?

In this case, the Test block should work. If the element with index 0 is not in the list, then the list box will return null. Null in a logical context is converted to false, after which the false branch is triggered. If an item in the list with index 0 exists, then the true branch will work.

---

<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, 12:13pm UTC](https://community.thunkable.com/t/what-am-i-doing-wrong/76130/4 "2024-11-08T12:13:49Z")

</div>


