@codeswept
If I’m not mistaken, stored variables in Thunkable follow the same rules of JavaScript variables which can “cast” (change) only between basic types. This means you can store Text, Boolean, Numbers and Null interchangeably but you can only change to the advanced types (list and object) from a null. So if the variable holds a list or an object you will have to first make it null to be able to assign a text or a number to it.
That is my theory of the problem.
Somewhere in your code you are giving this stored variable a value of a list or an object and this prevents it from being changed to another type.
@muneer Thanks for the detailed explanation! The code which I have shared above is the first instance of setting the stored variable’s value in the app. I am creating a checkbox function to save a daily word count target. I’m retrieving that value using the any component blocks. But regardless of list or object, if I set my variable to “hello” and try to display it, nothing happens.