Announcement

Collapse
No announcement yet.

Somebody Please Help

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Somebody Please Help

    How to write a condition formula

    i want to test if a field is linked with any records for certain entity or not linked


    if field is liked with others record of specific entity the status of another filed should be not available and if filed is not liked the stattus should be available


    If File management is Not liked or emply the avaiable status should be Availabe and if file management is linked or not emply the available status should be not available



    Somebody please help
    Attached Files
    Last edited by yubrajkafle; 02-03-2021, 02:23 PM.

  • #2
    Hello,
    try something like this:
    Code:
    ifThenElse(
        fileManagementId,
        availableStatus = 'Not Available',
        availableStatus = 'Available'
    );
    Note, in the Formula scope, you can click on the Attribute button and select the proper attributes.

    Comment

    Working...
    X