Hi @BenWip,
Hope you could share a bit more about your scenario, what do you mean by "but by default , We shouldn't load the Combo box. If user select the combo box that time only we need to populate the data."?
Do you mean that only when users select ComboBox, it will load data?
If so, I think you could set a variable for the OnSelect property of the ComboBox:
Set(varItems,Choices(ListName.ChoiceColumnName))
Then set the Items property with this variable varItems. Not sure if you have this ComboBox within a form, if so, you could reset the variable on successfult submission.