Hey everyone,
So I have a table that runs off a daily manual .csv import from Jira. The primary ISSUES table is where I import the daily .csv into. There is a field on that table called “Log Work” where a string of time-tracking information is logged.
The string looks like this:
time-tracking;08/Feb/21 8:46 AM;addon_is.origo.jira.tempo-plugin;9000
I have this field set up as a linked field to the LOG WORK table. The behavior that I would like is as follows:
Import .csv → populate Log Work field → this creates / updates LOG WORK table with entires
The problem is, when the import takes place, instead of creating one record for the string, the Linked Field cuts up the string into several pieces, so it looks more like this (brackets indicate a separate record)
rtime-tracking] a08/Feb/21 6:29 AM] :addon_is.origo.jira.tempo-plugin] p3600]
It creates these four records rather than one record. I believe this has to do with the semi-color separator, but I don’t know how to prevent this behavior. Any easy way to stop this? I already turned off “link to multiple records”, btu even with that selection off, it still creates multiple records.