Hi,
I am trying to set a currency field programmatically(C#).
expenses.Attributes["new_amount"] = ((Money)rowItem["Expense Amount"]).Value.ToString();
rowItem["Expense Amount"] has the amount value as "56". It did not work with the above line.
What is the correct way of inserting into Currency field?
Thanks for any help.