Click here to Skip to main content
15,892,005 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hello ,

To generate links based on other field values from a SP List I'm using a calculated column with this formula:

=CONCATENATE("<DIV><a href='","http://xxx.xx.xxxx.com/xxx/xx/release/",Title,".",CurrentVersion,"'>Notes</a></DIV>")

I marked also the data type returned from this formula is :

-Number(1,1.0,100
)

Then the links works and they look like links inside of the list fields but I don't know how to open it in a new window or tab. Is it possible? I searched about it and I'm not sure if could be done, if request some script or maybe there are other way.

I tried with:

=CONCATENATE("
href=","http://xxx.xx.xxxx.com/xxx/xx/release/",Title,".",CurrentVersion," TARGET="_blank" >Notes
")


But gives me an Error message.
Posted
Updated 3-Mar-14 22:58pm
v4

Have you tried with target tag ?

=CONCATENATE("")
 
Share this answer
 
Comments
Kinna-10626331 4-Mar-14 3:30am    
That didn't works, give me error message about the formula. I added like this:

=CONCATENATE("Notes")
The problem was the quotes in Target="_blank" , now works:


VB
=CONCATENATE("
href=","http://xxx.xx.xxxx.com/xxx/xx/release/",Title,".",CurrentVersion," TARGET=_blank >Notes")
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900