Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
mparker123
Creator
Creator

URL In Straight Table

Hello All,

I am trying to put a URL link into a straight table. When I put in the expression the field is blank and not showing any values. If someone can take a look my expression? I would appreciate it.

=if( epic_cf_pmo_project_type='Epic' and project_name<>'PMO Test' and project_name<>'PMO IMS Pipeline' and epic_status<>'Not Required' and epic_status<>'Done',epic_key, [epic_key] & '<URL> http://google.com & epic_key)

1 Solution

Accepted Solutions
marcus_malinow
Partner - Specialist III
Partner - Specialist III

CORRECTION -

=if(ONLY(epic_cf_pmo_project_type)='Epic' and ONLY(project_name)<>'PMO Test' and ONLY(project_name)<>'PMO IMS Pipeline' and ONLY(epic_status)<>'Not Required' and ONLY(epic_status)<>'Done',ONLY(epic_key), ONLY([epic_key]) & '<URL>http://google.com/' & ONLY(epic_key))

View solution in original post

5 Replies
marcus_malinow
Partner - Specialist III
Partner - Specialist III

Try this:

=if(ONLY(epic_cf_pmo_project_type)='Epic' and ONLY(project_name)<>'PMO Test' and ONLY(project_name)<>'PMO IMS Pipeline' and ONLY(epic_status)<>'Not Required' and ONLY(epic_status)<>'Done',epic_key, [epic_key] & '<URL>http://google.com/‌' & epic_key)

Anil_Babu_Samineni

Are you just doing concat the string to field?

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
marcus_malinow
Partner - Specialist III
Partner - Specialist III

CORRECTION -

=if(ONLY(epic_cf_pmo_project_type)='Epic' and ONLY(project_name)<>'PMO Test' and ONLY(project_name)<>'PMO IMS Pipeline' and ONLY(epic_status)<>'Not Required' and ONLY(epic_status)<>'Done',ONLY(epic_key), ONLY([epic_key]) & '<URL>http://google.com/' & ONLY(epic_key))

mparker123
Creator
Creator
Author

when i use this it works but it populates the straight table with values that should be filtered out and are filtered out with my other expressions.

marcus_malinow
Partner - Specialist III
Partner - Specialist III

Great, as it works, please mark my answer as correct

You'll need to add some additional criteria to base the display of this on your other expressions.