Compare the 2 values

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

Hi @Sathish_Kumar_S

If (Expected Annual Spend Range <= 50,000 USD)

If (Expected Annual Spend in USD <= 5000)

    Result="Yes"
else

    Result= "No"

Else If (Expected Annual Spend Range > 50,000 USD)

If (Expected Annual Spend in USD >= 5000) 

    Result= "Yes"

 else 

    Result="No"

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!!

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.