How to Use URL as app type link

Has anyone every tried building a gallery view that uses 3 types of App type inputs

I have got the LINKTOFORM and LINKTOVIEW working together using an IFS expression, i am now trying to add external URL into the mix, but not really sure if itโ€™s even possible

something like this,

IFS(
[Name] = โ€œUpdate Contractors Databaseโ€, LINKTOVIEW( [View Link] ),
[Name] = โ€œAdd New Capital Expenseโ€, LINKTOFORM(โ€œExpenses_Formโ€, โ€œTypeโ€,โ€œCAPexโ€),
[Name] = โ€œView Income Statementโ€, LINKURL( [URL] )
)

I see the system is generating an action (Open URL) Perhaps LINKTOROW can be used here, am i on the right track?



0 3 226
3 REPLIES 3

Try using a grouped action that contains both the LINKTOVIEW/FORM action and the โ€˜open a websiteโ€™ action. Then set a condition on each action thatโ€™s based on the row they clicked, so the correct action fires for each row and ignores the other action.

Thanks for the idea, if i can get the URL to work i can combine the other actions. Not having much luck though, im trying to set the Behavior condition to something like;

IF(
AND(
LOOKUP([_THISROW], โ€œCategoriesโ€, โ€œNameโ€, โ€œNameโ€)=TRUE,
[Type] = โ€œURLโ€),
TRUE,FALSE)

or do you think i will need an action for every single view (Row) using this method?

@GreenFlux gave such a perfect solution here I had to come back and contribute. Screenshots below and the detail is:
Create 3 actions for this Table
1 as your Grouped Action
The other 2 as your separate actions: a. Internal: Go to view in this app. b.External: Go to website
In your table add the system view or hyperlink you want for each row

In the Behavior section of each of the two โ€œsubโ€ Actions add your qualifier e.g. [ViewName]=โ€œGotoSiteโ€ or [ViewName]<>โ€œGotoSiteโ€


Good luck!

And thanks Green Hornet! jk. GreenFlux!

Top Labels in this Space