Aug 10, 2024 01:25 AM
Hi everyone !
I've encountered difficulties in validating the search for an ID. I believe there must be an error in my formula because, after integrating logs to ensure that I was correctly comparing the searched ID with the ID present in the table and the relevant column, I noticed that we have a match, but the formula generates a 'false' instead of a 'true'. Does anyone see my mistake?
Thank you
Solved! Go to Solution.
Aug 12, 2024 10:16 AM
Try using console.log({modeleId, recordID}) to see the actual values of the variables. The value you get from the input variable might be an array and not a string.
Aug 12, 2024 10:16 AM
Try using console.log({modeleId, recordID}) to see the actual values of the variables. The value you get from the input variable might be an array and not a string.
Aug 14, 2024 04:37 AM
Hi,
You found my error ! It's was an array and not a string...now it works, thank you !