I have a field of data that needs to end with an =
sometimes the data comes through without the =
the field can be different lengths
for example here is a field with an = at the end
KamJOVCRBWqqQlWlB16aQZpKc6w=
in this example, there is no = but I need to add an = at the end
khZgNJQWegMisCbODHshBSNh3yM
Thank you for any help, much appreciated!
Solved! Go to Solution.
Hi @bh1789
You can use this formula
if Right([Field1], 1) != '=' then [Field1] + '=' else [Field1] endif
Thank you very much!
One more question, is there a way to to formula you provided to not add the = when the field begins with "ECW"?
Hi @bh1789
Try this formula
if Right([Field1], 1) != '=' and left([Field1], 3) != 'ECW' then [Field1] + '=' else [Field1] endif
Thank you very much!