Hi Guys,
Have a drop down selection. Item values will vary depending on what's in a collection.
example of selections: 400/800:5, 900/1000/600:8, 200/400:6
So if a user selects 400/800:5 I need to separate values as
Value
400/5
800/5
If a user selects 900/1000/600:8
Value
900/8
1000/8
600/8
Need these values in a collection all in one column.
Any help is greatly appreciated.
Thanks
Hi @christian12 ,
Please try:
OnChange:
ClearCollect(CollectMyRequests,ForAll((Split(First(Split(Dropdown6.SelectedText.Value,":")).Result,"/")) As a,Concatenate(a.Result,"/",Last(Split(Dropdown6.SelectedText.Value,":")).Result)))
Best Regards
Cheng Feng