Using a parameter within relevance in an action

(imported topic written by Muntzie91)

I can’t figure this out. None of these work.

if {exists file “parameter “_File_Attachment” of action”}

if {exists file parameter “_File_Attachment” of action}

if {exists file “{parameter “_File_Attachment” of action}”}

if {exists file {parameter “_File_Attachment” of action}}

(imported comment written by jessewk)

Try

if {exists file (parameter “_File_Attachment” of action)}

endif

Don’t forget an endif is required

(imported comment written by Muntzie91)

Thanks, that did it.