Skip to main content
krishnav9816
July 13, 2022
Question

query entity errors

  • July 13, 2022
  • 4 replies
  • 0 views

Could not display interface. Please check definition and inputs. Interface Definition: Expression evaluation error [evaluation ID = 285dc:bfbb1] : Cannot compare incompatible operands of type List of Variant and type Number (Integer). error coming please explain

    4 replies

    stefanhelzle0001
    Brainy
    July 13, 2022

    Without seeing your code, this is pretty much guesswork.

    It seems like you use the "=" operator to filter for rows by an integer value. The value you pass to the filter seems to be a list of a non-integer type.

    The "=" operator only support a single value and the data types must match.

    krishnav9816
    July 15, 2022

     I am not taken any filter in quary entity

    stefanhelzle0001
    Brainy
    July 15, 2022

    OK. Then you do another comparison where you try to compare a list of a variant type to an integer. For this to work, both sides of the comparison must be of the same data type.