I have DataWindow with 'name' and 'code'. Also in the SELECT for this DW, I have PM. If PM is null, then I want name to be bold.
How do I do that?
you should do the following steps:
Paste this:
if( IsNull(PM), 700, 0)
The column values will be bold as you need.
Br. Gábor