Hi, I've built a flow that validates & formats the data appropriately to upload into a system.
There are 81 columns that all have unique character limits, for example:
Field 1 must be 9 characters
Field 2 allows for up to 50 characters (including blank spaces)
etc.
I would like to have a validation that errors out any fields that exceed the character limit but in just one column (I don't want 81 error columns). I would like to have one column that identifies the specific cell/s that exceeded the limit. For example:
Column 1/Row 29 - exceeded character limit
Column 1/Row 29 & Column 12/Row 29 - exceeded character limit
I've tried the following:
Created multiple formulas (one function), as follow:
if Length([Field 1]) > 50 then "Yes" else "No" Endif
Then another formula function following with:
IF [Field 1] = "Yes" THEN "Field 1" or if([Field 1] = "Yes" and [Field 2] = "Yes") then "Field 1 & Field 2" ELSE "No" ENDIF
The second formula has Malformed IF Statement.
Is there an easier way to identify these errors? Without using so many if/and statements?