Okay, so, I basically have a text variable that I want to use to access the value of a dictionary entry by setting it to the entry's name. I'm trying to make it do this by having it join to a counter variable- e.g. EntryID = "entry" & counter
How, then, would I be able to use this so that if my variable is entry1 it would access dictionary.entry1, but if it's entry3 it would access dictionary.entry3 and so on?
Does this even make sense?