Dear Vyoma,
This will require some custom code as the keyboard component can't make a comparison like that (it assumes there is only one possible correct answer).
So if your Keyboard component is set to end the routine, insert a Code component and in its "End routine" tab, put something like this:
if yourKeyboardComponentName.keys in eval(corr_resp):
thisExp.addData('Correct', 'Yes')
# whatever else needs to happen after a correct response
else:
thisExp.addData('Correct', 'No')
In your corr_resp column, the values should look like this:
"['b','y']"
"['r','g']"
etc
The quotes (double and single) are important here.
Don't put anything in the "Correct answer" and "Store correct" fields of the Keyboard competent, as you are handling those decisions in code now.
Untested, but hope this works for you.
Regards,
Michael