Hi @tperry ,
A bit strange, but not an issue - you can control this on the submit form - something like (I will use MyField1, MyStar1 and a Variable vError). So on the Save button
If(
isBlank(
MyField1.Selected.Value //last bit may be different depending on the source of the data
),
UpdateContext({vError:true}),
UpdateContext({vError:false})
)
Also include UpdateContext({vError:false}) on screen exit and/or entrance.
The Visible property of the MyStar1 would be vError.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.