Hi guys!
So what I have is a container with a lot of text labels that will bring information from different rows in a SharePoint list.
That information will get it from filtering between combo boxes, but just one will be the one that brings the information, so making the container visible with all the text labels.
"Codi / Descripció" is the one that will make the container visible and will have to bring the other columns from the row in the SharePoint list. The formula to get the container is:
If(
CountRows(ComboBox_Codi.SelectedItems) = 0
|| IsBlankOrError(First(ComboBox_Codi.SelectedItems)),
false,
true
)
But, what I have to create to make the values from the other columns in the row linked to the combo box Codi?
Like, what formula in the text label, on On select and Visible?