Is there any way to split this strings into the create file? I wanted the SampleId to H only (e.g. "1036H") and others in different columns.

Is there any way to split this strings into the create file? I wanted the SampleId to H only (e.g. "1036H") and others in different columns.
@lkylerl0228 within apply to each action, you can add Compose action with below expression to split
split(items('Apply_to_each'),' ')This will give you array of words that are split by space, then you can use indexer as follows to get the value of first word, second word and so on
outputs('Compose')[0]
outputs('Compose')[1]
outputs('Compose')[2]