-
-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there any way to separate multiple entries within one data field? #12
Comments
Upvoting this FR. I get the same result. Use case: I track my morning and evening heart rate daily. When I export to csv using plugin I get a result similar to: What I expect is: Headings are parsing appropriately but data values all import into a single cell. Thx, |
@pwflint Hi. I'm just curious and trying to understand your problem — I'm not a developer. This is quote from Wikipedia:
In other words CSV doesn't offer any syntax for different field types — all fields are strings of text that doesn't include reserved characters. In case of field containing reserved characters its value can be surrounded with double quotes In any case GFM markdown spec defines tables as leaf blocks which are contrary to container blocks. Container blocks can contain other leaf blocks but leaf blocks contain only inline content such as bolded text Markdown tables are not very powerful by nature. Markdown isn't suited to collect structured data but YAML could be used for that. When data is collected once a day, a new note with corresponding YAML could be used to capture that data. The purpose of markdown tables is not to capture data but to represent existing data. In case of over 30-40 rows tables become storage of data instead of a good representation of data. This is the main idea of upcoming dynamic views which treat tables as output form — not as a data source. |
I just got started with Obsidian and also new to the Dataview functionality.
While the export of my data works really well with this plugin, i was wondering if there was a way to separate mutliple entries within one data field?
Dataview shows multiple entries as an enumeration, which get's lost during export to csv. I suppose a workaround is to always combine sparate words with an underscore, but maybe there is any easy way to avoid this.
The text was updated successfully, but these errors were encountered: