Hi,
I can't seem to figure out why the following if condition with numeric comparison is not working. Can someone help? Thank you.
protected function setup()
{
$pamt = $this->params["pamt"];
$this->src('packages')
->pipe(new ColumnMeta(array(
"min_amt"=>array("type"=>"number")
)))
->pipe(new Custom(function($row){
if ($row("min_amt") <= $pamt) {
$row["remark"] = "Eligible for subsidy"; }
}