What Am I Doing Wrong?

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

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!

1 Like

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.