Forum Discussion
MarkShnier__You
Qrew Legend
4 years agotry this
var text value = ToText([Product Add-On Apps]);
Count(
Trim(Part($value,1,";"))<>"",
Trim(Part($value,2,";"))<>"",
Trim(Part($value,3,";"))<>"",
etc etc
Trim(Part($value,20,";"))<>"")
------------------------------
Mark Shnier (YQC)
[email protected]
------------------------------
var text value = ToText([Product Add-On Apps]);
Count(
Trim(Part($value,1,";"))<>"",
Trim(Part($value,2,";"))<>"",
Trim(Part($value,3,";"))<>"",
etc etc
Trim(Part($value,20,";"))<>"")
------------------------------
Mark Shnier (YQC)
[email protected]
------------------------------
GeorgeKhairalla
4 years agoQrew Cadet
Hm. I don't think that made a difference. Still seems to be picking up the empty values.
As a side note, I'm not sure understand the meaning of Trim(expression) <> "" ... is this a shorthand for my "If" statement?
If(Trim(Part($value,1,";")) <> "", Trim(Part($value,1,";")),"")
------------------------------
George Khairallah
CTO
gotomyerp, LLC
------------------------------
As a side note, I'm not sure understand the meaning of Trim(expression) <> "" ... is this a shorthand for my "If" statement?
If(Trim(Part($value,1,";")) <> "", Trim(Part($value,1,";")),"")
------------------------------
George Khairallah
CTO
gotomyerp, LLC
------------------------------