Is anyone please telling me how to convert following formula with crystal syntax into basic syntax? Much appreciated!!!
if {Account_Type.Account Type} = 'asset' then
(
if {Journal_Entry.Debit or Credit} = 'Credit' then
(
{Journal_Entry.Amount} * -1
)
else
(
{Journal_Entry.Amount}
)
)
The above formula is from sample report of Crystal Report XI R2. Now I want to convert basic syntax. Many thanks!!!!!!!!!