How do I modify a record in another form from a stateless form?
I am trying to modify a field based on results from information provided in a stateless form. The form I am trying to modify the record in is called TEST_TRACKING. It contains 1 record that will match a test number and zoho.loginuserid. When I try and use the formula below I get a null error when i add myStatus.Passed = "Y".
- if (input.Percent < 80)
- {
- openUrl("http://failedtest.blablabla.com", "Same window");
- }
- else if (count(TEST_TRACKING[(zohouser == zoho.loginuserid && Testnumber == input.TESTNUMBER)]) == 1)
- {
- myStatus = TEST_TRACKING[(zohouser == zoho.loginuserid && Testnumber == input.TESTNUMBER)].Passed;
- myStatus.Passed = "Y";
- }