I have a question about the Import CSV Line Items workflow from Tiller Community Solutions.
I use it to import AppleCard transactions. Recently, after an import, I tried to split one of the transactions and got an error message-- something like “transaction must have a transaction ID”. I went back and looked at all of the imported AppleCard transactions and, sure enough, none of them had transaction IDs (or account ID, for that matter). As a workaround, I generated a unique transaction ID and put it in that column, and then Tiller allowed me to split the transaction.
I guess my questions are:
- Could a feature be added to the workflow to automatically generate transaction IDs?
- Is there any downside to the Account ID column being blank for all of these imported transactions?
Thanks.
P.S. In case anybody’s interested, here’s the formula I used to generate the transaction ID:
=LOWER(CONCATENATE(DEC2HEX( RANDBETWEEN(1, 4294967296), 8 ),DEC2HEX( RANDBETWEEN(1, 4294967296), 8 ),DEC2HEX( RANDBETWEEN(1, 4294967296), 8 )))
It will produce something like “18f3ade1a64eb5754830b82b”. Once you have your generated ID, copy it and “Paste Values Only” into the cell where you need it.