How can i display the excel row data in message box?

Hi,

I have a doubt, someone please help me.!
For example i have an excel with 5 rows with 2 columns, I want to read that file and display each row item in message box.
How can this be done.

Thanks in advance.!

Hi @Sindhuja_Rangasamy,

string.Join(",",row.ItemArray)
Main.xaml (8.1 KB)

Regards,
Arivu

1 Like

Hello,

Put message box in for each & write below in message box,

row(0) - zero means first column
row(1) - one means second column

Cheers,
Pankaj