Hi @S2_0452,
Could you please share a bit more about yoru form configuration?
I have made a demo for your reference.
Set the Items property of the ComboBox corrresponding to Status as below:
Choices(Suppliers.Status)
Set the DefaultSelectedItems property of this ComboBox as:
If(DatePicker.SelectedDate<Today()&&DateDiff(DatePicker.SelectedDate,Today(),TimeUnit.Days)<180,{Value:"Active"},
DatePicker.SelectedDate>Today(),{Value:"Expired"},
DatePicker.SelectedDate<Today()&&DateDiff(DatePicker.SelectedDate,Today(),TimeUnit.Days)>=180,{Value:"Renew"}
)