Value.Is

 

This topic applies to the Power Query Formula Language which can be used with Power Query and Power BI Desktop to build queries that mashup data. See the list of function categories.

Value.Is is the function corresponding to the is operator in the formula language. The expression value is type returns true if the ascribed type of value is compatible with type, and returns false if the ascribed type of value is incompatible with type.

Value.Is(value as any, type as type) as logical  

ArgumentDescription
valueThe value is.
typeType of value is compatible with type
Show: