Forum Discussion
Kerry-AnnKerry-
10 years agoQrew Trainee
I have an if statements set up, like the following, how would I apply this java to this?
If([Status]="Ready to Start",
URLRoot() & "db/" & Dbid () & "?act=API_EditRecord&rid=" & [Record ID#]
& "&apptoken=b2ef6ijciijsibdf9dftgdjtdhm3"
& "&_fid_15="&URLEncode("In Progress")
& "&_fid_284="&URLEncode(Today())
& "&rdr=" & URLEncode(URLRoot() & "db/bkpvkgvbb"),
[Status]="In Progress",
URLRoot() & "db/" & Dbid () & "?act=API_EditRecord&rid=" & [Record ID#]
& "&apptoken=b2ef6ijciijsibdf9dftgdjtdhm3"
& "&_fid_15="&URLEncode("Completed")
& "&_fid_285="&URLEncode(Today())
& "&rdr=" & URLEncode(URLRoot() & "db/bkpvkgvbb")
& "&_fid_29="&URLEncode(Today()), null)
If([Status]="Ready to Start",
URLRoot() & "db/" & Dbid () & "?act=API_EditRecord&rid=" & [Record ID#]
& "&apptoken=b2ef6ijciijsibdf9dftgdjtdhm3"
& "&_fid_15="&URLEncode("In Progress")
& "&_fid_284="&URLEncode(Today())
& "&rdr=" & URLEncode(URLRoot() & "db/bkpvkgvbb"),
[Status]="In Progress",
URLRoot() & "db/" & Dbid () & "?act=API_EditRecord&rid=" & [Record ID#]
& "&apptoken=b2ef6ijciijsibdf9dftgdjtdhm3"
& "&_fid_15="&URLEncode("Completed")
& "&_fid_285="&URLEncode(Today())
& "&rdr=" & URLEncode(URLRoot() & "db/bkpvkgvbb")
& "&_fid_29="&URLEncode(Today()), null)