excel-365

How to made custom Split array function in MS Excel?

穿精又带淫゛_ 提交于 2021-01-02 04:03:55
问题 How to make a custom made function Split(str as String, delimiter as String ) using Split() in VBA to be used in worksheet.. and it will return as array or SPILL the result.. For example, Split("{20;30;40;50;60}",";") will return Spill down Array result in the same array as in the written formula as: 20 30 40 50 60 I try to use the Split(String,";") in VBA function but it only return 1 value and in text type.. I also need to remove both ' { ' and ' } ' in the string if there but accept it

How to made custom Split array function in MS Excel?

北城余情 提交于 2021-01-02 04:03:31
问题 How to make a custom made function Split(str as String, delimiter as String ) using Split() in VBA to be used in worksheet.. and it will return as array or SPILL the result.. For example, Split("{20;30;40;50;60}",";") will return Spill down Array result in the same array as in the written formula as: 20 30 40 50 60 I try to use the Split(String,";") in VBA function but it only return 1 value and in text type.. I also need to remove both ' { ' and ' } ' in the string if there but accept it