Hi @Anonymous,
Based on the issue that you mentioned, do you want to filter the Combo Box based on the Toggle value?
Could you please share a bit more about the scenario, is this 'Computer Type' a Choice column?
If it is a Choice column, please try the formula as below:
If(
DataCardValue3.Value,
Filter(
Choices(YourSPList.'Computer Type'),
Value = "Engineering Computer"
),
Choices(YourSPList.'Computer Type')
)
Note: DataCardValue3 represents the Toggle control.
Hope it could help you.
Regards,
Qi