Hello, I’m creating a parts app that both tracks parts and provides part info for various locations. Part tracking is good, working on part info..
I’m trying to create a linktoview process in which the user selects a location, then selects a part type.
The resulting information would show a list of part info filtered with that location.
on sheets I currently have a sheet for each part type, with a column within each sheet for location; As the part types have different specs and therefore different columns.
As the selection process takes two deep link steps, I’m trying to figure out how to pass the location (or part type if that is easier) selection to the second linkto(filtered)view.
Alternatively, I tried to create a search form instead, and came to this equation:
LINKTOFILTEREDVIEW([Part Type],[Plant] = [_THISROW].[Plant])
also tried: LINKTOFILTEREDVIEW(([_THISROW].[Part Type]),[Plant] = [_THISROW].[Plant])
With the form asking Part Type and Plant. This is giving me “invalid inputs”
Any suggestions?
thank you!