Most idiomatic way of getting multiple inputs #190
Unanswered
matthewturk
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Hey @matthewturk! There are a few ways to do this. The ones you've mentioned are very valid ways. But the catch is that you can't access the chosen value again. This is where you'd instead use some script to open a suggester and save it to a variable, which you could access like |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi! I'm working on trying to capture little snippets of information to different categories chosen from a particular list of items. So for instance, "Topic A", "Topic B" etc. I'd like to append each of these to my daily note with a time/date stamp, and also to use metadata tagging for use with dataview. Basically, what this means is that I want to have two inputs -- one for the category (which could be a suggester, but I'm fine with free text if need be) and one for the content.
What I'm not sure about is the "right" way to do this. I think I can see a few different possibilities, but as I look at them, it feels like I'm not quite getting the best way to do it using QuickAdd.
{{VALUE.category}}
and{{VALUE.content}}
or something similar, and have a step in the macro being to call the capture. Call the macro directly.{{MACRO}}
in a capture.I'm still getting myself accustomed to quickadd, but I couldn't find any explicit examples of how to do this. Does anyone have any suggestions?
Beta Was this translation helpful? Give feedback.
All reactions