When rounding numbers for currencies, is there a preference between Round2 or NumberFormat2? I know that Erel prefers NumberFormat2 for rounding, but I am wondering if there is any special consideration required for rounding currencies.
Best regards
B4X:
CurrentTask.ToValue.Text = Round2(CurrentTask.FromValue.Text * Rate, 2)
or
CurrentTask.ToValue.Text = NumberFormat2(CurrentTask.FromValue.Text * Rate, 0, 2, 2, False)
Best regards