I have a flow that takes a CSV file and inputs each item into a SP list which is mostly working except a Condition Expression that can being either a number or letter.
It appears that the split(item(),',')?[3] is equal to any letter works, but it doesn't work for numbers?
I tried if(isInt(split(item(),',')?[3]),int(split(item(),',')?[3]),split(item(),',')?[3]) for the numbers and now I'm getting confused on the troubleshooting because I'm getting false errors.
This seems like it should be an easy fix? Do I need to wrap the split(item(),',')?[3] in something else?