Hi experts!
Help me please, i’m stuck with a formula that will increase a counter +1 in every cell in a column when time based automation is triggered.
[Button][Counter]
Button = email to send
Counter = 0 (+1 on every button pressed or on every button pressed / automation triggered)
Pch
2
Hi @anon45109858 and Welcome to the Community !
I’m sorry but what are you trying to do exactly ? … Having the button update the count in its row once its action is performed ?
For this you could use in the Action
formula of the button something like :
RunActions (
[Action 1 goes here],
thisRow.ModifyRows(thisRow.Count, thisRowCount + 1)
)
If this not what you were trying to do, could you give some more details ?
Hi @Pch!
I’m trying to add counter for the button pressed (automation triggered)
My button sends an email (gmail pack)
– Is it possible to add an additional action here?
Button formula is:
Formula:
ModifyRows(thisRow, [NPS COMPANIES].RESULT, Gmail::SendEmail([User's private Gmail account], thisRow.EMAIL, [NPS Template].SUBJECT, format(SURVEY.BODY,thisRow.[FULL NAME],Hyperlink([Form link]+"?Company="+thisRow.COMPANY+"&"+"Email="+thisRow.EMAIL,"[Click here]")), hideSignature: TRUE()))
Is there a way to add your formula to the button with the action?
Pch
5
I’m sorry, I’m currently not in front of my computer but you’re almost there…
You just need to wrap both modifyRows() in a RunActions() and add a comma just after your 1st modifyRows()
1 Like
system
Closed
6
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.