Grundvarg, the biggest problem you are going to have is that the template on my character sheet contains specific arguments. {{Acrobatics=... }} will not appear using the pf_check template for example. here is an example of the drop down skills macro I use for my characters with this sheet, perhaps it will help: &{template:pf_check} {{name=@{selected|character_name}'s}} {{check=Skill Check}} {{foo= ?{Choose a Skill(† trained only)| Acrobatics, Acrobatics: [[ 1d20 + [[ @{selected|Acrobatics} ]] + ?{Modifier?|0} ]] | Athletics, Athletics: [[ 1d20 + [[ @{selected|Athletics} ]] + ?{Modifier?|0} ]] | Bluff, Bluff: [[ 1d20 + [[ @{selected|Bluff} ]] + ?{Modifier?|0} ]] | †Computers, Computers: [[ 1d20 + [[ @{selected|Computers} ]] + ?{Modifier?|0} ]] | †Culture, Culture: [[1d20 + [[@{selected|Culture} ]] + ?{Modifier?|0} ]] | Diplomacy, Diplomacy: [[ 1d20 + [[ @{selected|Diplomacy} ]] + ?{Modifier?|0} ]] | Disguise, Disguise: [[ 1d20 + [[ @{selected|Disguise} ]] + ?{Modifier?|0} ]] | †Engineering, Engineering: [[ 1d20 + [[ @{selected|Engineering} ]] + ?{Modifier?|0} ]] | Intimidate, Intimidate: [[ 1d20 + [[ @{selected|Intimidate} ]] + ?{Modifier?|0} ]] | †Life Science, Life Science: [[ 1d20+ [[ @{selected|Life-Science} ]] + ?{Modifier?|0} ]] | †Medicine, Medicine: [[ 1d20 + [[ @{selected|Medicine} ]] + ?{Modifier?|0} ]] | †Mysticism, Mysticism: [[ 1d20 + [[ @{selected|Mysticism} ]] + ?{Modifier?|0} ]] | Perception, Perception: [[ 1d20 + [[ @{selected|Perception} ]] + ?{Modifier?|0} ]] | †Physical Science, Physical Science: [[ 1d20+ [[ @{selected|Physical-Science} ]] + ?{Modifier?|0} ]] | Piloting, Piloting: [[1d20 + [[ @{selected|Piloting} ]] + ?{Modifier?|0} ]] | †Profession, Profession (@{selected|Profession-name}): [[ 1d20 + [[ @{selected|Profession} ]] + ?{Modifier?|0} ]] | †Profession 2, Profession (@{selected|Profession2-name}): [[ 1d20 + [[ @{selected|Profession2} ]] + ?{Modifier?|0} ]] | Sense Motive, Sense Motive: [[ 1d20 + [[ @{selected|Sense-Motive} ]] + ?{Modifier?|0} ]] | †Sleight of Hand, Sleight of Hand: [[ 1d20 + [[ @{selected|Sleight-of-Hand} ]] + ?{Modifier?|0} ]] | Stealth, Stealth = [[ 1d20 + [[ @{selected|Stealth} ]] + ?{Modifier?|0} ]] | Survival, Survival: [[ 1d20 + [[ @{selected|Survival} ]] + ?{Modifier?|0} ]]}}} This may be difficult to view, but if you copy paste it into wordpad or similar you should be able to see it better with word wrap. You should notice some bizarre code (specifically: | } and ,) this is necessary to embed a query within a query. You can view more on this in the help wiki. I hope this was helpful.