Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
nareshthavidishetty
Creator III
Creator III

Expression

Hi,

We have an application it re-direct to the different web page.Here i have used the logic [Report Name] &'<URL>'&[Wiki Link] but for some reports the there is no link (N/A).

I need to show the reports which doesn't have links as N/A.

Please find the attached QVW and spreadsheet for reference.I the below image i need to replace the marked as N/A.

Untitled.png

Thanks..

1 Solution

Accepted Solutions
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

Try this expression.

If(WildMatch(link,'N/A'),link,[Report]&'<URL>'&[link])

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!

View solution in original post

4 Replies
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

Try this expression.

If(WildMatch(link,'N/A'),link,[Report]&'<URL>'&[link])

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
zhadrakas
Specialist II
Specialist II

try this Expression:

if([link]='N/A', 'N/A', [Report] &'<URL>'&[link])

nareshthavidishetty
Creator III
Creator III
Author

Thanks..Now i need to include two status as 'Pending' and 'N/A'.

kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Use the same logic.

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!