Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I'm working on a complex scenario, and my question is: I have a table storing price for products A and B. When I select A, I need to see price for B.
How should I write the expression? Any advice helps. Thanks in advance!
Hi
It should do it automatically if you model is set up to establish the product - matching product link
So if you select a product it will automatically show all the sub product details
Hello,
you may use fonctions like GetSelectedCount and GetFieldSelections to control showing/hiding conditions.
please share more info about your context or an exemple to provide a more accurate suggestion.
regards,
I made up a detailed scenario:
I have a Item Filter and a Item Information Table. For example, if I choose Necklace1 in filter, table will show information for Necklace1.
Say Necklace1 has a matching earring Earring1. Here is my question: if I choose Necklace1 in filter, how can I see
information for Earring1?
How about something like this:
If(GetFieldSelections(Item)='Necklace1', Sum({<Item={'Earring1'}>}Sales),
If(GetFieldSelections(Item)='Necklace2', Sum({<Item={'Earring2'}>}Sales)))
Hi,
according to your model,
how do you choose B when you select A ?
regards
Hi Olivier, B is a matching product for A. In another table, two fields: one for item, another for matching_product.
Hi Ivan, thanks for helping. Is there a more standardized way? Necklace1 is Product, Earring1 is Matching_Product.
Hi
It should do it automatically if you model is set up to establish the product - matching product link
So if you select a product it will automatically show all the sub product details
Hi Robert, I was linking Product in table1 with Product in table2, which will be complex. Now I'm linking Product in table1 with Matching in table2, it works well.