Hi,
I want to show column data with $ sign prefix to number(order amount). By using the below code, able to show it but not able to calculate by selecting multiple rows in the excel sheet. I think because of missing currency format.
->pipe(new ColumnMeta(array(
"order_amount" => array(
"label" => "Sale Amount",
"type" => "number",
"prefix" => '$',
"decimals" => 2
)
)))