Thanks Tom,
Yeah, managed to solve it quite easily actually (kudos Aware IM 🙂). Here is the rule for reference if anyone is interested in doing the same thing:
If Input.Input WAS CHANGED AND LENGTH(Input.Input)>0 Then
Input.IndexString=INDEX_OF(';',Input.Input)
CREATE Task WITH Task.Task=SUBSTRING (Input.Input, 0,Input.IndexString-1)
Input.Input=REPLACE_PATTERN(Input.Input,SUBSTRING (Input.Input, 0,Input.IndexString),'')
This rule automatically create tasks for rows, strings etc. that are divided with a ; . Example:
This is task 1;
This is task 2;
This is task 3;
The only limitation it seems is if a string is EXACTLY the same (Test1 and Test1), in those cases it doesn´t fully work and I might try to solve that as well but really don´t need to as 2 strings are never the same in my scenario/app.