Jump to content
  • 0

Assemble URL from Fields and special character


Hiperf

Question

I need to assemble a URL and file name from a series of fields and "_".

https://mydomain.com/portal/interimsubmission/2024_3273_Lease.pdf

[@ISYear]_[ISPropertyID]_[@ISfiletype].pdf

[@field:ISURLFront] Text(255)

[@ISYear]  Number

[ISPropertyID] Integer

[@ISfiletype] Text(255)

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Hello @Hiperf,

Do you need to generate this URL in the table?

If so, you may use a Formula field with the following formula: 
 

'https://mydomain.com/portal/interimsubmission/' + CAST([@field:ISYear] as nvarchar) + '_' + CAST([@field:ISPropertyID] as nvarchar) + '_' + [@field:ISfiletype] + '.pdf'

Here is the formula result:
oeioMsJ.png

If you need to generate the URL on the DataPage, in general, this should work as well. Please provide more details about the use case if this formula doesn`t work. 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...