I have the following formula in my crystal report done in .net:
<code>
(If {?Electric Rate} = 'All' then {MyTable.RateCode}={MyTable.RateCode}
else UpperCase({?Electric Rate}) = UpperCase({MyTable.RateCode}))
</code>
When I run this report choosing 'All' it won't pull in records where MyTable.Ratecode is null. How can I alter this formula to bring in records where MyTable.RateCode is null. Thanks in advance.
<code>
(If {?Electric Rate} = 'All' then {MyTable.RateCode}={MyTable.RateCode}
else UpperCase({?Electric Rate}) = UpperCase({MyTable.RateCode}))
</code>
When I run this report choosing 'All' it won't pull in records where MyTable.Ratecode is null. How can I alter this formula to bring in records where MyTable.RateCode is null. Thanks in advance.