Below values captured from website :
When the Expected Annual Spend Range in USD is Less than or equal to 50,000 USD
Then
Expected Annual Spend in USD should be equal or below 5000
If above condition is met the variable will have Yes or No
Logic 2 :
When the Expected Annual Spend Range in USD is Greater than 50,000 USD
Then
Expected Annual Spend in USD should be equal or above 5000
If above condition is met the variable will have Yes or No
Sample image from website :
@Sathish_Kumar_S
hi
use if condition as
Expected Annual Spend Range in USD<=50,000 USD
in
Then block use another if activity
condition as Expected Annual Spend in USD<=5000
then
assign
outputvar=“yes”
else
outputvar=“no”
in the first else
use another if for checking
condition As below
Expected Annual Spend in USD>=5000
then
assign
outputstr=“Yes”
else
outputstr=“No”
cheers
Parvathy
(PS Parvathy)
4
Hi @Sathish_Kumar_S
1. Assign Variables
- Expected Annual Spend Range = [Value from Website]
- Expected Annual Spend in USD = [Value from Website]
2. If Activity:
- Condition: Expected Annual Spend Range <= $50,000 USD
- Then:
3. If Activity:
- Condition: Expected Annual Spend in USD <= $5,000 USD
- Then: Set Variable = "Yes"
- Else: Set Variable = "No"
- Else:
4. If Activity:
- Condition: Expected Annual Spend in USD >= $5,000 USD
- Then: Set Variable = "Yes"
- Else: Set Variable = "No"
Hope it helps!!
system
(system)
Closed
5
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.