Hello,
I am trying to update to create a flow chart to check the status of lead after 1 week, and if for example still not interested, it will will count once and then transfer to another assigned user. The main point is I want to get the number of times it passes through transfer, and update the description accordingly..
This is what I tried:
// Increment the number of count
$count = 0;
$NCount = $count++
//Update the notes
ifThen(
$Ncount > 0,
record\update(
'Opportunity',
'description',
'It is transferred '+ $Ncount +' times'
);
);
But it doesn't seem to work..here I am trying to increase the counter, and since it checks an opportunity, then update the description with number of times it goes through this task.
I appreciate if you could help me!
Thanks in advance!
Judy
I am trying to update to create a flow chart to check the status of lead after 1 week, and if for example still not interested, it will will count once and then transfer to another assigned user. The main point is I want to get the number of times it passes through transfer, and update the description accordingly..
This is what I tried:
// Increment the number of count
$count = 0;
$NCount = $count++
//Update the notes
ifThen(
$Ncount > 0,
record\update(
'Opportunity',
'description',
'It is transferred '+ $Ncount +' times'
);
);
But it doesn't seem to work..here I am trying to increase the counter, and since it checks an opportunity, then update the description with number of times it goes through this task.
I appreciate if you could help me!
Thanks in advance!
Judy
Comment