Comment out a calculated field in a BAQ?

I have a BAQ that needs some debugging, and I’ve removed subqueries but the top level query has a calculated field that references a subquery.

Instead of deleting the Calc field (or replacing its formula with a constant), is there a way to “comment out” the current expression?

Try this ‘’/* current expression */ Should show blank without deleting the current expression.

1 Like

You could also try putting the SQL comment out of –

Surprisingly the /* ... */ works.

I was afraid that using -- .... would comment out the rest of the line, and could mess up the SQL phrase.