hi all,
This might be a simple one to all domino gigs out there.
I have used a $$return field to avoid "Form Processed "default value.The $$return field which is of computed type has the following formula:
who:= @If(@Left(From; " ") = “”; From; @Left(From; " "));
@Return("
Thank you, " + who + "
Main View");
This displays a link on the confirmation page which takes the users to “Main View”. Is there any way i could use 2 or more links right one below another.
Any responce greatly appreciated.
thanks,
J
Subject: $$Returns fileds
If I understand correctly, you want to put another link to another location
below your “main view” link. If this link is dependent on values in form, then
compute it in a variable as you have done already, then put a carriage return
br>] between your variables. Let me know if this isn’t what you meant… I
still need a coffee this a.m.
Subject: RE: $$Returns fileds
yes, thats what i meant.
thanks,
J
Subject: Sure, and no reason to use @Return…
who:= @If(@Left(From; " ") = “”; From; @Left(From; " “));”
Thank you, " + who + “
Subject: manupulating $$return
hi all ,
I have 2 forms.
In one of the forms, i have a field called “company” (editable text).
In the other form , i have a field $$return.
Can i display the value of company field using the $$ return field.
Any responces greatly appreciated!
Thanks,
Jay.
Subject: RE: Sure, and no reason to use @Return…
Thank You Bill. That was perfect!