please check handlebars docs, conditions in handlebars does not work like that, you can not put equals or some logic evaluation in the helper call, you have to call the helper, pass values and do any condition check inside, after that you can do this:
{{#if (getMeta H24)}}
<td>x</td>
{{else}}
<td>{{getMeta H24}}</td>
{{/if}}