Two way reference

Hi,
iโ€™d like to know if is possibile to have a โ€œtwo wayโ€ ref.
Let me clarifyโ€ฆ
I would like to have a dropdown cascade that allow me to go dip in a exactly selection; it work like a filter.
Do i have a way to manage this in a different way? Iโ€™d like to have a system that autofill backward if i already know what i will choose in the second dropdownโ€ฆ
for example:
if i have [categories] [item]
like

fruit / apple
fruit / pear
fruit / orange
vegetable / peas
vegetable / bean

i normally have a dropdown to choose the categories so the second dropdown i have a filter with the SELECT function to find what i need. But if iโ€™m sure to what i want as [item], how can i skip the first dropdown and if i can, will it autofill?

Solved Solved
0 9 664
1 ACCEPTED SOLUTION

Hi @Mark_11,

Yes the requirement mentioned by you indeed seems to be tricky. Please exlpore if following approach with teh mentioned workaround helps. Workarounds:

  1. There are two columns for Items( or in the test app that I am sharing the column called document, which is lowermost in hierarchy )
  2. There are two views.Teh employee who is confident of entering last column document can use the โ€œReverse Flowโ€ view.The employee who wishes to fill in by hierarchy, can use โ€œNormal Flowโ€ view.

A few images are below
Image 1: Normal view and Reverse View
2X_0_027c9431a2fcef3ea1294b6b656bdb0b9c529b0b.png

Image 2: Normal Flow.Here the user goes in the hierarchical flow of selection: Continent, Country and Document

Image 3 : Reverse flow.Here the user only selects the Document name . The Continent and Country are filled in by an action after the form is saved.

Image 4: The action fills in continent and country in reverse flow.

Image 5: Please note the table structure. It has two columns for Document ( the lowermost column in the hierarchy)
2X_6_6a3de3c5fca6be1b78cf341a2b329b5f9725b190.png

I modified a sampleapp dependent dropdowns for this functionality The app is available at Dependent Dropdowns

View solution in original post

9 REPLIES 9

Hi @Mark_11,

I believe following more inputs will be useful for the community to help better.

Would you always like this reverse autofill from item to category to be taken care by app logic.

Alternatively, would you like this reverse autofilling logic to optionally invoke, only when the user is sure of item, and so he fills in item first and in other cases the user can fill in with normal flow from category to item.

iโ€™d like to have 3-4 enum in a regular flow with a hierarchy order.
every column Request.
I put the first value, so the second enum is a subcategory of the first one, the third enum is a subcategory of the second oneโ€ฆ
If an employee have to submit a lot of row, at the end of the day this work could be boring and a waste of time, but i need it as filter, because could happen that someone doesnโ€™t remember the exact name, so he can follow the path; but if i remember the forth field, iโ€™d like to open that dropdown and choose the exact item; at this point i have at least 3 record above requested.
The other problem is, if donโ€™t follow the path, i canโ€™t skip any enum, because i have a SELECT condition by the previous enum.

It seems like a maze, is more like something nice to have; if is a kind of crazy stuff i can find another way maybe

Hi @Mark_11,

Yes the requirement mentioned by you indeed seems to be tricky. Please exlpore if following approach with teh mentioned workaround helps. Workarounds:

  1. There are two columns for Items( or in the test app that I am sharing the column called document, which is lowermost in hierarchy )
  2. There are two views.Teh employee who is confident of entering last column document can use the โ€œReverse Flowโ€ view.The employee who wishes to fill in by hierarchy, can use โ€œNormal Flowโ€ view.

A few images are below
Image 1: Normal view and Reverse View
2X_0_027c9431a2fcef3ea1294b6b656bdb0b9c529b0b.png

Image 2: Normal Flow.Here the user goes in the hierarchical flow of selection: Continent, Country and Document

Image 3 : Reverse flow.Here the user only selects the Document name . The Continent and Country are filled in by an action after the form is saved.

Image 4: The action fills in continent and country in reverse flow.

Image 5: Please note the table structure. It has two columns for Document ( the lowermost column in the hierarchy)
2X_6_6a3de3c5fca6be1b78cf341a2b329b5f9725b190.png

I modified a sampleapp dependent dropdowns for this functionality The app is available at Dependent Dropdowns

This seems great to meโ€ฆ
I will explore these settings;
can you explain the theory behind this โ€œdual columnโ€ solution.
Could be useful understand the process to be more efficient next time

HI @Mark_11,

The main reason for using two fields is the hierarchical fields Continent, Country, Document are in dependent dropdown format. As such, each successive field is available only when previous is selected. Only when Continent is selected, the Country option becomes visible and so on.

As such, this format is not useful when starting with a revrse flow.

Even though there are two fields for last field ( Document), in every record only any one will be populated , either in normal or reverse flow. So we can use one of these two document fields in further logic, by selecting non blank amongst the two.

Also since the logic for two flows is different, normal flow-one dependent dropdownand reverse flow- use of acions, there are two different views for two flows.

Hope this helps.

Thanks,
for the followinf flow, can i just a SELECT or ANY to pick the ones is filled or is better to create a virtual column for this purpose and than use it?

Hi @Mark_11,

Could you please elaborate it a little more?

I mean, after these column input i will have to manage the document filed. But with this method i have 2 different โ€œdocumentโ€ column. Would be a smart thing to create a third column to merge the data, to simplify following formulas?

Hi @Mark_11,

Yes you are right.

I was also thinking on similar lines.

Top Labels in this Space