str_comand = "Forms![dossier]![" & с_select & "].Value = 123"
Eval(str_comand ) ' it doesn't works
You are trying to assign a value within the string. You can't do this.
Eval(str_comand ) ' it doesn't works
You are trying to assign a value within the string. You can't do this.
Comment