Hello Goodnight. I have a question, I am using the FORMATER but I am not managing to do something. I have numbers from 1 to 4. I want each zapier to increase the number. If the previous one was 1, the next zapier, it will be 2. Until it reaches 4. Then it returns to 1 again. How could I do it? Thank you
Page 1 / 1
const currentNumber = Number(inputData.number);
const maxNumber = Number(inputData.maxNumber);
const nextNumber = (currentNumber % maxNumber) + 1;
return { nextNumber }];
Ohhh really thank you very much !!!! amazing
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.