Skip to main content
4 件の回答
  1. 2021年10月13日 9:56

    Hi @Prassanth E​ , the lod expression below should help you knock this out

    IF { FIXED [Category] : MIN([State])} <> { FIXED [Category]: Max([State])}

     

    AND { FIXED [Category],[Subcategory] : MIN([State])} = 'Success' or

    { FIXED [Category],[Subcategory] : MIN([State])}='Failure' THEN 'Failure'

     

    ELSEIF { FIXED [Category] : MIN([State])} = { FIXED [Category]: Max([State])} AND

     

    { FIXED [Category],[Subcategory] : MIN([State])} = 'Success' THEN 'Success'

    ELSE 'Failure'

    END

     

    Hi @Prassanth E​ , the lod expression below should help you knock this outIF { FIXED [Category] : MIN([State])} <> { FIXED [Category]: Max([State])} AND { FIXED [Category],[Subcategory] : MIN([State]) 

    workbook attached for ref. Let me know what you think about it.

0/9000