Activity › Forums › Salesforce® Discussions › How do I get the value of the selected value in LWC Combobox? Salesforce® Discussions How do I get the value of the selected value in LWC Combobox? Posted by Shweta on January 5, 2021 at 6:11 PM How do I get the value of the selected value in LWC Combobox? Aditya replied 5 years, 3 months ago 2 Members · 1 Reply 1 Reply Aditya Member February 23, 2021 at 7:11 AM `@track selectedLabel; get options() { return [ { label: ‘New’, value: ‘new’ }, { label: ‘In Progress’, value: ‘inProgress’ }, { label: ‘Finished’, value: ‘finished’ }, ]; } handleChange(event) { this.selectedLabel = event.target.options.find(opt => opt.value === event.detail.value).label; }` Log In to reply. Public All Members My Connections Only Me PublicAll MembersMy ConnectionsOnly Me Public All Members My Connections Only Me