Hello,
I have a dropdown that is created from two columns, like this:
Sort(ShowColumns(Filter([DataSource],[Column]=[FilteringCondition] ),"Description","Code"),Description,SortOrder.Ascending)
As a result, I have a dropdown with two fields available, "Description" and "Code". My Value property is set to Description field, so it shows all the descriptions from the list.
Similarly, the Default property is set to a variable that has a string that could be one of the descriptions possible, so it works fine and it positions the dropdown on the right element whenever the variable is set (if it is empty, shows the first element, as intended).
Question is: We can easily set Default by the Description content, but is there a way to Default it by the another column other than the one set in Value property? For instance, if I have a Code, can I use it to position the dropdown on the element that has that code, even though it is displaying Descriptions? Or are we "locked" to operations only on the Value-set column?
Thanks!