TVSB Markdown visualization null values

Hello,

How can I display null values using each_all in a markdown visualization?

I have this until now

{{#each _all}}
{{#with office as myoffice
Office {{../label}}
{{/with}}
{{/each}}

where office is

Output:
image

But when the field office is not in the json file the label Office is not displayed also. I would like that the label to be always showing.

Thanks!


{{#each _all}}	
Office	{{#with office as	myoffice
{{../label}}
{{/with}}	
{{/each}}	

Thanks!
I tried it also, but the problem is that if I have more information to display then the label Office will appear on every row
image

I was thinking of doing a if like
image

But is not working. I don't know why

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.