Hello everybody! First, a brief background about my issue to make it possible to understand my question. I have been an SPSS Data Entry software user since 1995. It ran perfectly under Windows XP and Windows 7. A great program that would allow you to use JAVA scripts to skipping fields depending on the value of an entered data. Inasmuch the program does not run under Windows 10 or Windows 11, I decided to create surveys data entry using MS Access or Excel, but to be honest, I can´t find the equivalent command to accomplish the following JAVA script:
function Form1_Question2_SkipFill(thisRespObj, thisVar) // Generated by wizard
{
if ((Vars.P11.Value == 99))
{
Forms.Form1.Question4.SetFocus()
}
else
{
// by default focus will go to the next question
}
}
Which means If the value of the variable P11=99 skip to field named Question4 else go to next field by default, in the same form and record of course.
Can some please help me? Please take into account that I am user of different programs whose programming skills are no so developed, but willing to keep on learning.
function Form1_Question2_SkipFill(thisRespObj, thisVar) // Generated by wizard
{
if ((Vars.P11.Value == 99))
{
Forms.Form1.Question4.SetFocus()
}
else
{
// by default focus will go to the next question
}
}
Which means If the value of the variable P11=99 skip to field named Question4 else go to next field by default, in the same form and record of course.
Can some please help me? Please take into account that I am user of different programs whose programming skills are no so developed, but willing to keep on learning.