I have a TEXT column with a number ID. I made the column text to avoid these weird rounding quirks, given I am dealing with an ID number that has to be exact to be correct. I need a display column that displays several information from other columns as text string. The issue is that specifically for the ID number it appears to insist on rounding it up.
The formula I am using in the Display column is:
List(
thisRow.Payee,
If(thisRow.Bank.IsNotBlank(), "Banco: " + thisRow.Bank, ""),
If(thisRow.ID.ToText().IsNotBlank(), "ID: " + thisRow.ID.ToText(), "")
)
.Filter(CurrentValue.IsNotBlank())
.Join(Char(10))
Any help on how to avoid this?
