09-27-2011, 11:18 AM
Hi Uma,
You are giving the values to webradiogroup from excel. That value is stored in the variable "class1". so no need to write class1( .select "class1") in double quote.
The problem is here that the variable "class1" containing the value isn't matching with the item presents under that webradiogroup. It might be due to the extra space presents for the value in "class1". You need to use trim for fetching the value from excel like:
can you please try now with the above procedure?
You are giving the values to webradiogroup from excel. That value is stored in the variable "class1". so no need to write class1( .select "class1") in double quote.
The problem is here that the variable "class1" containing the value isn't matching with the item presents under that webradiogroup. It might be due to the extra space presents for the value in "class1". You need to use trim for fetching the value from excel like:
Code:
class1=trim(sheet name.cells(row,col).value)