I hope someone can shed some light on the following.
I am using a filter formula to output a list - in this sample the list contains only one item. I like to get rid of the “@” symbol and output as a bullet list.
I can get rid if the @ sign, I can output as a bullet list, but I can’t do both. What am I doing wrong?
Formula 1: if([1_ZoekNaam].IsNotBlank(),Pilot.Filter(upper(naam).find(upper([1_ZoekNaam]))>0).list(),“no search item”)
output:
Formula 2: if([1_ZoekNaam].IsNotBlank(),Pilot.Filter(upper(naam).find(upper([1_ZoekNaam]))>0).bulletedlist(),“no search item”)
output:
Formula 3: totext(if([1_ZoekNaam].IsNotBlank(),Pilot.Filter(upper(naam).find(upper([1_ZoekNaam]))>0).bulletedlist(),“no search item”))
output:
Formula 4: bulletedlist(totext(if([1_ZoekNaam].IsNotBlank(),Pilot.Filter(upper(naam).find(upper([1_ZoekNaam]))>0).list(),“no search item”)))
output:
I have tried to rewrite the formula many different ways, but I am not getting a bulleted list without the @ symbol. Anyone any ideas?
1_zoeknaam is a named formula on the canvas, where I enter something that can be matched (in this case “joost m”)