Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi -
I am working with a straight table where I am re-directing my users to access different web pages based on a condition (if issue starts with certain letters go to one page, else go to another).
Links are working properly, but for some reason values for URLs are not visable in my table. Any suggestions on what i should do?
I chcked every single property that there is and did not see anything that would cause this to happen.
Here is my expression:
if(left([issue],3)='ABC',
('<URL>www.google.com'&[issue]),
'<URL>www.yahoo.com'&[issue])
Thank you!
see the attched file
This is what worked for me :-)! thank you for your help
if(left([issue],3)='ABC',
[issue]&'<URL>'&'www.google.com'&[issue],
[issue]&'<URL>'&'www.yahoo.com'&[issue])
Is there any method to link another sheet...!