when I loopthrough the DT1 i will get Category as “A” and state as “AZ”
using these value I have to loop through the DT2 to find the cell value of [A][AZ].
I am not passing row index or column index .
I checked it alreday .It did not help me .The column name will not be same for the entire process . Row and column name can change. It is easy to get the cell value with index MatrixDT.Rows[0][1].ToString() , I am just wondering how can we get the same using column and row name using C# code.
Yes ,next Category=B and what is the value of Column “AZ” “CA” and so on .
MatrixDT.Rows[0][1].ToString() → in this I am using index to find the cell value,but in my case I have to use name value.