Multiply Error

How can i fix this error please help.

Screenshot 2023-11-15 182214.png

[Pair QTY] * ANY(SELECT(AutoSelect[TIME DURATION], ([CHANNEL] = [Channel Selection])))

 

0 2 118
2 REPLIES 2

I am assuming the [Pair QTY] is a Number or Decimal data type? If so, I believe the problem is you are trying to combine mismatched data types. It looks like you're trying to take a numeric value (i.e. 4) and multiply it by a time duration (i.e. 05:14:49 "hh:mm:ss"). Depending on the exact outcome you're looking for you will need to convert the data types to match before performing any math functions.

[Pair QTY] * ANY(SELECT(AutoSelect[TIME DURATION], ([CHANNEL] = [_THISROW].[Channel Selection])))

Add the [_THISROW] before [Channel Selection]

Top Labels in this Space