Hi @tgut03 !
Please see this for reference.

Lets say my list contains these items:

Here it can be numbers or text. I just used numbers. Now what you need to achieve from this is that you need to get a slice of each index of first 6 characters and then use that in the if condition to check if it starts and ends with 0.
Slicing can't be done like that in PAD as shown in your pic. There is a dedicated action which can get the subtext of just the first 6 characters of your text. The action is called "Get subtext".

This will help me to get the first 6 characters of that text based on index and store it in a variable. Later use this variable, Subtext to check if it starts with and ends with 0.

The full code for your reference:
SET Count TO 0
LOOP Index FROM 0 TO TextList.Count - 1 STEP 1
Text.GetSubtext.GetSubtextFromStartTo Text: TextList[Index] NumberOfChars: 6 Subtext=> Subtext
IF (StartsWith(Subtext, 0, False) AND EndsWith(Subtext, 0, False)) = $'''True''' THEN
SET Count TO Count + 1
ELSE
# Add some actions here
END
END
I hope this helps.