---
title: "*=(_:_:)"
framework: tabulardata
role: symbol
role_heading: Operator
path: "tabulardata/column/*=(_:_:)-6kp11"
---

# *=(_:_:)

Modifies a column by multiplying each element in the column by the corresponding optional value in a collection.

## Declaration

```swift
static func *= <C>(lhs: inout Column<WrappedElement>, rhs: C) where WrappedElement : Numeric, C : Collection, C.Element == WrappedElement?
```

## Parameters

- `lhs`: A column.
- `rhs`: A collection that contains elements of the same type as the column’s elements.

## See Also

### Modifying a Column with a Collection of Values

- [+=(_:_:)](tabulardata/column/+=(_:_:)-2w5o4.md)
- [+=(_:_:)](tabulardata/column/+=(_:_:)-2scuy.md)
- [-=(_:_:)](tabulardata/column/-=(_:_:)-8rgjq.md)
- [-=(_:_:)](tabulardata/column/-=(_:_:)-3v0hh.md)
- [*=(_:_:)](tabulardata/column/*=(_:_:)-8mmnn.md)
- [/=(_:_:)](tabulardata/column/_=(_:_:)-dnma.md)
- [/=(_:_:)](tabulardata/column/_=(_:_:)-8xhzg.md)
- [/=(_:_:)](tabulardata/column/_=(_:_:)-86t1j.md)
- [/=(_:_:)](tabulardata/column/_=(_:_:)-3acz8.md)
