Falcon703549
Member
- Joined
- Jun 25, 2019
- Messages
- 7
- Programming Experience
- Beginner
I'm struggling to put together a formula that will look at two fields and provide the correct link based on fields selected previously;
if ( [TBL_CONTACT.LL SERVER] == "License 2" ) {
return "https://web address.php";
}
else
{
The above works, I would like to develop this further......... If this field = "THIS" and THIS FIELD = THAT return THIS .....
if ( [TBL_CONTACT.LL SERVER] == "License 2" ) && [TBL_CONTACT.LL PRODUCT == "Version 4"] {
return "https://web address.VERSION4php";
}
else
{
I seem to be struggling with the addition of &&
if ( [TBL_CONTACT.LL SERVER] == "License 2" ) {
return "https://web address.php";
}
else
{
The above works, I would like to develop this further......... If this field = "THIS" and THIS FIELD = THAT return THIS .....
if ( [TBL_CONTACT.LL SERVER] == "License 2" ) && [TBL_CONTACT.LL PRODUCT == "Version 4"] {
return "https://web address.VERSION4php";
}
else
{
I seem to be struggling with the addition of &&