I am working on an application where I read the User ID and password from a Google Sheet.
If there is a match between the User ID and password stored in the Google Sheet and the information entered in the application, I need to display a success message.
This is what I have completed so far. Could you please assist me?
From the look of your blocks, pushing Button1 will retrieve your sheet, and then when it arrives, it will be displayed in ListView1 for every one to see all the user names and passwords.
I imagine you do that only for testing.
You did not show the URL used in the Web request in Button1.Click.
Look in this FAQ for how to set up web requests against a sheet.
I’d say there are others chars in your ID variable ( as length is 7 and not 6 ) maybe a space…
you are converting your csv reply string to a list
you are splitting the textual representation of the list, reconverting to a list again ( this second step is not needed and probably causes the issue )
length of “1002” is 7 ( which should mean there is a spurious char at the end of the string )