LINKTOFORM or LINKTOFILTEREDVIEW

Hi all,

Can anyone help me figure out how to have an action button doing:
If data exists then LINKTOFILTEREDVIEW else LINKTOFORM?

Many thanks

Matt

Solved Solved
0 5 521
1 ACCEPTED SOLUTION

Third answer on your unformulated questiion after gooroo`s
What about next expression (?):
IF(ISBLANK([Data Field]), LINKTOFORM(โ€ฆ), LINKTOFILTEREDVIEW(โ€ฆ))

Read next, pls

For exmpl:

IF(
	ISBLANK([Data2]),
	LINKTOFORM("ForTests_Form","Data2",""),
	LINKTOFILTEREDVIEW("ForTests", [Data2] = [_THISROW].[Data2])
)

View solution in original post

5 REPLIES 5
Top Labels in this Space