In my crystal report, there are two columns Name
and Amount
. What i want is if Amount
is blank then Name
must be bold otherwise it will be in regular font. I don't know how to write formula for this condition. any help would be appreciated. Thanks.
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
- How to know full paths to DLL's from .csproj f
Try this
You should be able to:
If your Amount field is a number (probably is, but you used the phrase "is blank"), then compare it to 0 instead of an empty string.