Looking to bypass or accept duplicate files
I'm currently writing code to pull the files with the same ending into one concatenated file. I'm noticing that when it gets to a duplicate file, the code breaks. Is there a way I could code this to accept the duplicate file as well? I know it may be as simple as renaming the file, but I wanted to reach out for answers first.
If(
N Items(lotFiles) == 1, CalibrationTable = lotFiles[1],
N Ite
...