Skip to main content

I have 3 data sources (Hardware, Database, Network). Each has a class field, which I want to return the value of.

 

Currently I am using the below calculation

 

IF

ISNULL([Class (Hardware)])

THEN

[Class (Database)]

ELSE

[Class (Hardware)]

END

 

This gives me the result of Hardware, and if hardware is null populates the Database information. I now want to introduce Network, but the variations I have tried haven't worked. Any Suggestions

3 answers
  1. Jul 27, 2018, 1:23 PM

    Hi, James

     

    try this

     

    IF ISNULL([Class (Hardware)]) THEN

         if ISNULL([Class (Database)]) THEN

              [NETWORK]

         ELSE

              [Class (Database)]

         END

    ELSE

         [Class (Hardware)]

    END

     

    end

0/9000