Forum Discussion
qmartiny
Helper III
4 years agoCOMBINEVALUES ignore blank
Hello, (I have the following COMBINEVALUES that concatenates multiple flags into one field to get all the flags in one place. I added a UNICHAR for line break and it works fine, however still sho...
- 4 years ago
How about:
qcheck total flag text = VAR dealsize = 1 VAR dealscore = BLANK () VAR R4Q = 3 VAR owner = 4 VAR FlagList = FILTER ( { dealsize, dealscore, R4Q, owner }, NOT ISBLANK([Value]) ) VAR Result = CONCATENATEX ( flaglist, [Value], "|" ) RETURN Result
bcdobbs
Community Champion
4 years agoHi Quentin,
Are you just using it in a card visual? Could you send a screen shot of the output? I didn't get blank lines with my test measure.
Will do some more testing my end as well.
qmartiny
Helper III
4 years agoI am using it in a Matrix, as 'Values' example with | separator
With UNICHAR
- bcdobbs4 years ago
Community Champion
How about:
qcheck total flag text = VAR dealsize = 1 VAR dealscore = BLANK () VAR R4Q = 3 VAR owner = 4 VAR FlagList = FILTER ( { dealsize, dealscore, R4Q, owner }, NOT ISBLANK([Value]) ) VAR Result = CONCATENATEX ( flaglist, [Value], "|" ) RETURN Result- qmartiny4 years ago
Helper III
Legend.
Thank you so much for your help! It's humbling to see how good people are at this.
Have a great eveningQuentin