The error message suggests that you are trying to multiply a number with a list in your custom column expression. This is not a valid operation, hence the error.
To fix this error, you need to ensure that the expression in your custom column is only multiplying numbers with numbers, and not any other data types. Here's an example of an expression that multiplies two columns together:
= Table.AddColumn(Source, "CustomColumn", each [Column1] * [Column2])
In this example, Column1
and Column2
are both numeric columns in the Source
table, and we're multiplying them together to create a new custom column called CustomColumn
.
If you're still getting the same error, double-check that the data types of the columns you're working with are correct. It's possible that one of the columns is not actually numeric, but rather a list or another data type.