This seems like it should be simple but I just can't find a way to extract the first character of a string. There's no pattern to the strings so I cannot use split or substring. What a I need is something like Left([string],1) but I just can't see how to do this in Power Automate.
Design and run time with error message. This is using the expression '
'
The data is coming in from a CSV file, hence the split by comma.
Can you share a snippet of how you are passing this value to the function?
Hope this Helps!
If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!
The string is coming from an array. I'm using the split function to separate out the values. This working great so I know the values exist. One of these items contains a text value for a 'Company' name and what I'd like to do is extract the first character from this item.
Can you check if the string you are trying to pass actually has some text value? or is it Null? As we are extracting the first character, if the value being passed is null, it will return that error.
Hope this Helps!
If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!
Already tried that but get an error 'substring' parameter is out of range....
Hi @IMAX99
Can you try
substring('string',0,1)
This will return 's' in this case. You can replace the 'string' by selecting a variable output or any text output from the dynamic selector.
Hope this Helps!
If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!
ankit_singhal
7
Super User 2025 Season 1
Michael E. Gernaey
4
Super User 2025 Season 1
David_MA
2
Super User 2025 Season 1