Hi @kullurumanoj ,
Could you please share a bit more about your data source? Is it a SP list?
Could you please share more details about the formula you typed wihin the Items property of the ComboBox1 and ComboBox2?
Further, do you want to set the Default value of the ComboBox2 based on the selected value within the ComboBox1?
I have made a test on my side, please take a try with the following workaround:
Set the DefaultSelectedItems property of the ComboBox2 to following:
{
Value: ComboBox1.Selected.Value
}
In addition, if you have enabled multiple options functionality within your ComboBox1 and ComboBox2 (set the SelectMultiple proeprty to true), please modify above formula as below:
ForAll(
ComboBox1.SelectedItems,
{
Value: Value
}
)
More details about setting a Default value for a ComboBox control, please check and see if the following blog would help in your scenario:
https://powerapps.microsoft.com/en-us/blog/default-values-for-complex-sharepoint-types/
Best regards,