Customer Portal

How to Trim values in the graph

Comments 1

  • Avatar
    avackova
    0
    Comment actions Permalink
    function transform(){
    $Name:=trim($Name);
    }

    or
    function transform(){
    $Name:=iif(isnull($Name),null,trim($Name));
    }

Please sign in to leave a comment.