Add a custom Predefined Choice List to a Mailchimp Form - mailchimp

I have been searching for a way to upload a custom Predefined choice List but have not found a way to do this
Is it possible to do this? my list is 100 entries long it would be onerous to add these by hand
Thanks

Related

Multiple Elements in custom SearchParameter

I have an extension where value[x] is sliced into valueCoding and valueDecimal.
I now would like to search on the code provided in the valueCoding and the value in valueDecimal.
Do I need to create two custom SearchParameters or is it possbile to define one, that allows a
request like the following?
http://localhost:4080/Patient?_customSearchParameter.code=ABC&_customSearchParameter.value=111
Thanks in advance!
Each search parameter must have a single search type. There isn't really a way to search a number in the same way you search a code, so you'll need distinct parameters. (You can see an example of how this was done for some of the Observation.value search parameters.)

How to create a multi-language survey

I'm currently creating a survey on Google Form and I need to make it in 4 languages so the result of each questions are not separated depending on the language selected by the user. (so we can have graphical results of each responses without taking language into account)
This raises different questions:
1- Should I create different forms from the beginning (one for each language) OR is it better to merge all languages surveys into one & only google form linking questions by possible script/else?
2- What would be the best script to allow adding questions to the survey in the future while keeping the most accurate graph results?
3- Is it possible to give only one link to people so they decide in which language they want to take the survey? (maybe creating one form for the only purpose of choosing language, then re-direct to appropriate form?)
I really checked & couldn't find which way to create a multi-langual survey on Google Form... (if needed I will separate each questions but they are pretty linked to each other...)
You can do it this way.
First, add a radio button question to allow the user to select their preferred language.
Then, create four sections in the form, each for one language.
Next, click on the three dots and select "Go to section based on answer". Make different options "redirect" to different language sections.

Mailchimp: how to show an article if user has no preferences

Is something like this not possible with a wildcard? I'm trying to send an article to people who do not have any preferences, and if they do have preferences don't show it. I cannot find any documentation on it.
Thanks in advance
*The star means all groups
*|INTERESTED:*|*
//Do nothing
*|ELSE:|*
//Show all
*|END:INTERESTED:|*
No, MailChimp's conditional merge tags don't support wildcards inside of those merge tags.
If the end goal is to show X content to subscribers who have no group affiliations and show Y content to subscribers who have any group affiliations, there are a few ways to accomplish this.
a) You can use *|INTERESTED:GroupTitle:GroupName1,GroupName2,GroupName3|*, etc. to show content to any members of those 3 groups. If you have more than that, of course, just add all of your groups in there with that comma-seperated format. Then, use the *|ELSE:|* as you already are in your example to account for people who aren't tied to any of those groups. This can be tedious though if you have a ton of groups.
b) Consider sending two separate campaigns, each set to send to a segment of your list that targets based on group affiliations (or non-affiliations).
sources:
http://kb.mailchimp.com/article/how-do-i-use-smart-merge-tags-with-groups/
http://kb.mailchimp.com/article/how-can-i-send-to-a-segment-of-my-list/

Autocomplete vs Drop-down. When to use?

I've read somewhere (can't remember/find where) an article about web usability describing when to use drop downs and when to use autocomplete fields.
Basically, the article says that the human brain cannot store more then the last five options presented to choose.
For example, in a profile form, where there is your current occupation, and the system gives you a bunch of options, when you read the sixth options, your brain can't remember the first one anymore. This example is a great place to use an autocomplete field, where the user types something that he thinks that would be his occupation and then select the better from the few options filtered.
I would like to hear your opinion about this subject.
When should I use a drop-down and when I should use a Autocomplete field?
For a limited list, don't use an autocomplete edit box or combobox, but use a listbox where all values are visible all at once. For limited lists, especially with static content of up to about 8 items, this takes up real estate, but presents the user with a better immediate overview.
For less than 5 items a radiogroup or checkbox group (multiple selections) may also be better.
For lists whose content is dynamic, like a list of contacts, a (scrolling) listbox or combobox are appropriate because you never know how many items will be in the list. To keep it manageable, you will need to allow for some kind of filtering and/or autocomplete.
Autocomplete usually suffers from the fact that what the users types needs to match a string from the beginning. I hate those except for when they are used to complete a value based on what I typed in that (type of) field before. E.g. what browsers nowadays offer when filling out online forms.
Allowing a user to start typing in a combobox usually suffers the same drawback. But admittedly it doesn't need to if the filtering is based on "like %abc%" instead of "starts with abc"
When dealing with lists that can have many similar items, I really like the way GMail's "To" field handles it. You start typing any part of someone's name or e-mail address and GMail will drop down a list presenting all the contacts whose name or e-mail address contains the characters you have typed so far anywhere within them. Using the up and down keys changes the selection in the dropped down list (without affecting what you have typed) and pressing enter adds the currently selected item to the "To" field. By far the best user experience I have had so far when having to select something from a list.
Haven't found any components yet that can do this, but it's not too hard to "fake" by combining an edit box and a listbox that drops down when you start typing and has its contents is filtered based on what has been typed so far.
I would use 2 criteria,
1) How long is the list, if the list contains 5 elements you better use a combobox as it will be easier for the user (better UX)
2) In case the list is long, how easy for the user to remember the prefix of what he/she is looking for... if it's not easy, using autocomplete is irrelevant..
I'd say it depends on the diversity in the list, and the familiarity with the list items.
If for example the list contained over 5 car brands (list items I'm familiar with), no problem.
If on the other hand the list has over 5 last names, it could take me some more time before I'd make a selection.
You should probably just try out both options and trust your gut on which you find easier to use.
Here's the opposite approach:
The worst time to use an auto-complete box is when you have a finite and relatively small set of options, and the user doesn't know the range of valid options. For example, if you're selling used cars and you have a mixed bag of brands, simply listing the brands in a combobox is more efficient and easier to browse than an auto-complete method.
Being able to remember the last 5 options is most likely irrelevant unless you have a giant list of options and are requiring the user to select the most relevant item.
An alternative approach is to use both. I believe Dojo has a widget that acts as both a combobox and an auto-complete field. You can either choose to start typing and it will narrow down the possible options, or you can interact with it with your mouse and browse it like a combobox.
I usually look at how big the list is going to be. If there are going to be more than 15 options then it just seems easier to find if they can just start typing.
The other circumstance for me is when there is an other option and they can free type it. This essentially eliminates the need for two controls since you can combine in one.
The main difference has nothing to do with usability but more to do with what defines the acceptable inputs.
You normally use a ComboBox when you have a predefined list of acceptable inputs (e.g. an Enum or list of occupations).
An auto-complete field is best used when there are many known inputs BUT custom input is accepted as well. The user will become frustrated if they type "Programmer" in as their occupation but it wasn't one of the pre-defined, acceptable inputs, and they are given a message that their input is not valid.
Keep in mind that ComboBoxes do allow you to type in them to select the first matching option. Some types of ComboBoxes (depending on the UI framework you are using) even allow free-form text fields at the top or side of the field to search or add to the list.
Of coarse the best way to determine what YOUR user will prefer is testing: A/B, field, user, etc.
Hope this helps you solve your dilemma!

How to bulk extract outlook properties from every contact in distribution list?

Does anyone know how to bulk extract outlook properties from everyone inside a distribution list?
I can expand the distribution list by clicking the small + sign, but that only gives me first and last names, what I want is their aliases (which only available on outlook property)
Thanks in advance
Sorry actually I just found 1 way of doing it:
Backup and remove everyone in your contact list
Open the outlook properties of the distribution list
Add all members of the distribution list into your contact
Export your contact list into excel, and the alias will be in one of the column
Feel free to post additional answer if you have better method. Thanks

Resources