Hello, is it possible to select an item/value from a column in another table with several โlist columsโ like
So when i select type โBooster Panelโ in a form it will give me the items (Type numbers) from โbooster panelโ column to choose from, when I select โduct detectorโ I get the items under "duct detector "to choose from. โbooster panelโ and โduct detectorโ are in the same table as separate columns.
Can someone help, or is this not possible and do I need to setup a table for every Type
Thanks Muk
You can make it work that way, but it is not really the best way. You could do something like this:
IFS(
[col] = "Booster" ,
Table[Booster] ,
[col] = "Duct" ,
Table[Duct]
)
That expression would be in valid_if, by the way. If youโre not familiar:
A better way would be to use this structure.
Then you could use this kind of expression for valid_if
SELECT(
Table[Value] ,
[category] = [_THISROW].[col]
)
Thank you, I will try.
Is deeklink expression possible?
[quote=โMarc_Dillon, post:2, topic:55011โ]
IFS(
[col] = "Booster" ,
Table[Booster] ,
[col] = "Duct" ,
Table[Duct]
)
So when I have 20 category this will be not possible using this expression??
Yes, it would be possible, just cumbersome, because youโd have to manually add 20 different condition-value pairs to the IFS(). Which is why my 2nd suggestion is probably better.
Deeplinks are for navigating to different views in the app. Iโm not sure how that could relate to your original question here.
User | Count |
---|---|
15 | |
14 | |
8 | |
7 | |
4 |