I have a block of data in excel (117 columns) with potentially thousands of records that I need to perform validation on for those columns. For example: I need to check the maximum length for all columns to ensure they don't exceed the specified character limit for that column.
My current approach is to define the variable as a constant as a User type, then check via a formula: IF Length([Field1])=[User.Length_Field1] THEN "Valid" ELSE "Invalid (Check Length)" ENDIF
That outputs to a new column of course, but is this the best way to do this? I have other validation to perform on these fields and I don't want to end up with hundreds of constants and hundreds of extra columns/fields.
I'm new to Alteryx, so appreciate any advice.
Thank you.