You have exporting the project in wrong way.
You need to press+hold Ctrl key on keyboard and mouse click the link ide://run?File=%B4X%\Zipper.jar&Args=Project.zip at top of B4XMainPage
See the comment, which explain why.
'This event will be called once, before the page becomes visible.
Private Sub B4XPage_Created (Root1 As B4XView)
After the page is created, the code will not run again.
1. You can use Sub B4XPage_Appear in test
Sub B4XPage_Appear
Label1.Text = b4xtablescreen.is_patientstatus
End Sub
or
2. Set Label1 as Public in test
Then in B4XTable_Screen, write
B4XPages.ShowPageAndRemovePreviousPages("test")
test_screen.Label1.Text = B4XTable1.GetRow(RowId).Get("Patient Status")