I am new to Crystal Reports. I have a DB where the Memory Column is being reported in KB. I created a report for my IT director in which he wants that field to be reporting the memory in GB. I tried this formula (based on book I purchased titled 'Beginner's Guide to Crystal Reports 2016')
IF {tblDts.Memory} = "" THEN "N/A" ELSE {tblDts.Memory}*0.4256
The error I get is
A number, or currency amount is required here
and it highlights the {tblDts.Memory}
after my ELSE
statement.
That field in the database only has numeric values (btw - 0.4256 is the decimal format for 10240, I tried a division statement with the same results so I figured I try a multiplication statement).
What am I doing wrong?