/ ERRor

Hello there

9 / 9
300 / 9

I have the following values;

How do I get 9 and 300? How do I delete the “/” and after?

Hello @d.ulutas

If the string is 300/9.

If the variable strVal=300/9, then use a split option.

Split(strVal,“/”)[0]. will be equal to 300 and Split(strVal,“/”)[1]. will be equal to 9

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.