@BRL7WZ - short answer:
I am not clear on what you have in the Items property of that Combo Box, but on the DisplayMode property of the Value field, try:
If(
ComboBox.Selected.Value = "Import",
DisplayMode.Edit,
DisplayMode.Disabled
)
Longer answer. You have many options:
Assuming your using a Form control, you could set the Required property of the DataCard (not the DataCardValue) with a condition. E.g.:
'Your Combobox'.Selected.Value = "import"
Then when the user tries to use the SubmitForm function without a value entered in the "Value" field, an error message will appear inside the DataCard for that field.
In addition, you could apply the below to the OnFailure property of the Form to give the user a clear reason for the failed submission.
Notify(
"The Value field is mandatory etc",
NotificationType.Error
)