Can get simple filter criteria to work on view

Can get simple filter criteria to work on view

Hi,

Sorry its probably me being really stupid but for some reason I cannot get a view to show records only for the signed in user.  I have a 'Personel' form with employee details and obviously I just want most users to see their details.  Here is the script for the view:

summary  Personel_View
{
    displayname = "Personel View"
    show  all  rows  from  Personel [Employee_Email == "zoho.loginuserid"]
    (
        First_Name as "First Name"
        Last_Name as "Last Name"
        Employee_Email as "Employee Email"
        Position
        Ward
        Rights
        Added_Time as "Added Time"
        Modified_User as "Last Modified User"
        Modified_Time as "Last Modified Time"
        ID
        Added_User as "Added User"
    )
    filters
    (
        Rights
    )
    options
    (
        display rows = 10
        display records per row = 1
    )
}




























I have added my details to test it which includes my email address which is the same as my login email but all I get when I open the form is the message: 'No data available'.  Am I missing something glaringly obvious here?  I have emailed support but not had anything back.  They are probably snowed under and I am sure some of you eagle eyed forum trolls can spot where I'm going wrong.

Johnny