Hi,
I created a search which provides me with the usernames of all user which have logged on, i have another column right now which is from a database containing all the authenticated usernames. I want to check that all usernames in the first column are in the database.
I tried using:
eval Results=if(match(Loggedin_user,username), "yes","no"
but doesnt work. I need a way to loop through the Loggedin_user column verifying that the username is in the username column.
Any suggestion on how to do this?
... View more