Hi all,
i need to show amount with currency in SSRS report.So, for that i did below code. but the amount field is showing 0.00. not coming valus
amount = salesLine.LineAmount;
currencyCode = salesLine.CurrencyCode;
currencySymbol = Currency::find(CurrencyCode).Symbol;
amountCurrency = StrFmt(" %1 %2", CurrencySymbol,amount);
i have checked, currency setup is not there. i have spoke to the concern person , he will do soon. but atleast, amount will come rite? why amount is not coming?
plaese let me know