Hello,
I want to split an amount of an invoice distributed evenly using 2 decimal points. This is the table I currently have
| Field1 | Field4 |
| 958A | 1187.39 |
| 958A | 1187.39 |
I want to get to the Split Amount ensuring I have 2 decimals:
| Field1 | Field4 | Split Amount |
| 958A | 1187.39 | 593.70 |
| 958A | 1187.39 | 593.69 |
Field1 could also have 3 records of the same number and need to split it evenly.
I used the formula tool [Field4]/2 Data Type: Fixed Decimal Precision 10, scale 2 and gave me the 593.70 on both records, but need the second record to be 593.69. I know the Multi-row formula would work, but I haven't been able to get it to work yet.
thanks for the help!