Hi @TiagoFreire , @mdevaney
Thank you for he answers.
@mdevaney I did try the code but it didn't work as it is but your suggestion on using the Default property and Reset(Combo) helped me try other functions using these properties and I actually ended up with the following solution that it's now working:
ProjectComboBox.Items= fx [ [@ProjectDataSource] ]
ProjectTeamMemberComboBox.DefaultSelectedItems = Filter('Project Team Members', 'User'.'Email' = User().Email && 'Project'.'Id'= ProjectComboBox.Selected.Id)
ProjectTeamMemberComboBox.Items = ""
ProjectComboBox.OnChange(Reset(ProjectTeamMemberComboBox))
Before I was doing this, the item that I wanted to auto select was there but wasn't default selected though.
ProjectComboBox.Items= fx [ [@ProjectDataSource] ]
ProjectTeamMemberComboBox.DefaultSelectedItems = ""
ProjectTeamMemberComboBox.Items = Filter('Project Team Members', 'User'.'Email' = User().Email && 'Project'.'Id'= ProjectComboBox.Selected.Id)
I mentioned the performance concerns as I believe no matter which platform we're working on if you can meet the requirement with one query why would you want to do more then one.
Thank you again for the time on that guys.