Hello,
I want to concat text under a certain condition like this.
In this case I want to add a twitter handle to a tweet if the twitter handle is given.
I guess I can not use router or filter because I have multiple of those conditions and too many other steps afterards.
I can not use JS code because the "SuggestedTweet" from the example below comes from another option and the javascript code does not allow any input.
(I just created a feture request for this https://pabbly.hellonext.co/p/javascript-needs-input-variables because that would make the JS code so much more flexible and powerful!)
Is there a way to solve this within Pabbly connect?
So here is what I want in "code":
SuggestedTweet = StepX.ValueSuggestedTweet;
if(StepY.TwitterHandle != '')
{
SuggestedTweet += StepY.Twitterhandle;
}
Jan
I want to concat text under a certain condition like this.
In this case I want to add a twitter handle to a tweet if the twitter handle is given.
I guess I can not use router or filter because I have multiple of those conditions and too many other steps afterards.
I can not use JS code because the "SuggestedTweet" from the example below comes from another option and the javascript code does not allow any input.
(I just created a feture request for this https://pabbly.hellonext.co/p/javascript-needs-input-variables because that would make the JS code so much more flexible and powerful!)
Is there a way to solve this within Pabbly connect?
So here is what I want in "code":
SuggestedTweet = StepX.ValueSuggestedTweet;
if(StepY.TwitterHandle != '')
{
SuggestedTweet += StepY.Twitterhandle;
}
Jan