Hello everyone
I hope you are doing well
I'm trying to use IFTTT rule to update entries by filter (in my case all entries)
In "Parameters to set on the entry" I use this:
entryId=[entry.id] & Field1=[entry.Field2]
Lets say these are the values in first three entry
entry1:
- Field1: empty
- Field2: 111
entry2:
- Field1: empty
- Field2: 222
entry3:
- Field1: empty
- Field2: 333
When I update any entry, I need to trigger my IFTTT and copy all field2 in field1 and my entry will look like this (This is what I need):
entry1:
- Field1: 111
- Field2: 111
entry2:
- Field1: 222
- Field2: 222
entry3:
- Field1: 333
- Field2: 333
But now what I got:
entry1:
- Field1: 222
- Field2: 111
entry2:
- Field1: 222
- Field2: 222
entry3:
- Field1: 222
- Field2: 333
Hi,
When calling the IFTTT, the [entry] reference refer to the entry calling the IFTTT and not to the one updated by it.
What you can do is:
Well done Demolag 👏👏👏👏👏
I was trying for three days with no luck
thank you so much!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Okay, apparantly I missed the simpler solution of using the "Copy Confiform Data" IFTTT.
When running that IFTTT with: id=[entry.id]&Field1=[entry.Field2] without setting source and destination forms (will default to the calling form for both), it will do exactly what you asked.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.