Hi @gman91,
Could you please share a bit more about the error message within your Load Compliant Drop box?
Further, could you please share more details about the formula within the Items property of the Load Compliant Drop box?
Based on the screenshot that you provided, I think your Load Compliant Drop box is a Combo Box control rather than a Dropdown control.
I think there is something wrong with the formula that you mentioned, I have made a test on my side, please take a try with the following workaround:

Set the Items property of the Load Compliant Combo Box to following:
["Yes", "No"]
Set the DefaultSelectedItems property of the Load Compliant Combo Box to following:
If(
Value(Label1.Text)<20,
{
Value: "Yes"
},
{
Value: "No"
}
)
On your side, you should type:
If(
Value(Label1.Text) < 20,
{
Value: "Yes"
},
{
Value: "No"
}
)
Or
If(
Value(Label1.Text) < 20,
LookUp('DataSource', DisplayColumn = "Yes"),
LookUp('DataSource', DisplayColumn = "No")
)
Note: The DataSource represents the data source formula you typed within the Items property of the Load Compliant Combo Box control. The DisplayColumn represents the column you used as a Display value within the Load Compliant Combo Box.
Best regards,