Can somebody help me how i can read excel file and i would like to get from column "B" rows to check words that have Lower letters in text.
Example what i want to fetch is Column B words and also get what it has for that line in Column C Column B has rows
Test
PROBA
Proba
Column C has rows
Used
Not
Used
I want to fetch the texts that has lower letters like "Test" and "Proba" and display them in Datagridview2.Add.Rows Result to fetch me what it finds from Column "B" without read Line 1 row (to skip line1 read) Finish result to display like this:
ColumnC, ColumnB in datagridview2
Used,Test
Used,Proba
what i want:
1. Excel file to open and search inside the excel column "B" text that contains lower case letters
Example:
LETTER - correct it will skip
LettEr - contains lower case letter will fetch result like this
Get all strings that contains lower case text and also their row also do fetch from column "C" the details
And display the results in DataGridView by this:
- It must skip Line 1 records
C,B (First is column C record on the line where it finds the word) then its B (The word that has lower case text)