Forum Discussion
Paolo_lito
4 years agoFrequent Visitor
Zero instead Blank in a filter context
Hi , Hope you can help me on this subject . I would like to have zero instead Blank in my Matrix but only for the filtered value If I add a Zero as suggested the most of the time then ...
- 4 years ago
Try
VAR Code = Your Code
VAR Result = IF ( ISBLANK ( Code ), 0, Code )
Return
Result
tamerj1
Community Champion
4 years agoTry
VAR Code = Your Code
VAR Result = IF ( ISBLANK ( Code ), 0, Code )
Return
Result