Hi Gurram,
just check with the below code :
just check with the below code :
Code:
datasheet_item=trim(datatable("Dtcolname",dtGlobalSheet))
DDList_ItemCount=Window("..").winComboBox("...").GetItemCount()
For i=0 to (DDList_ItemCount-1)
ddlist_item=trim(Window("..").winComboBox("...").GetItem(i))
if (datasheet_item=ddlist_item) then
msgbox "data is same"
Exit for
end if
Next