Forum Discussion

JohnIoane's avatar
JohnIoane
Qrew Member
6 years ago

formula omits info from field all of a sudden

i have a url formula in a field used in a form somehow now it omits information from a field i want display ed from that formula, the formula url i currently have is:

URLRoot() & "db/" & Dbid() & "?a=dbpage&pagename=" & URLEncode("DME Chart.html") & "&clist=a&rid=" & [Record ID#]

1 Reply

  • You are forming a URL with the action of a=dbpage and providing a pagename pamater of "DME Chart.html". You are also providing parameters for clist and rid. However, clist and rid are not recognized parameters to the action dbpage so it is entirely up to the code your code page to parse and process these two extra parameters. Since you are not providing any code there is nothing more that can be said about why things is not working as you expect.