B4J Question Using XLUtils with For Loop

Kope

Active Member
Licensed User
B4X:
      For Each colroot As Map In root


                   sheet1.PutString(xl.AddressOne("A", 2),colroot.Get("full_name"))

                   sheet1.PutString(xl.AddressOne("B", 2),colroot.Get("bankname"))

                   sheet1.PutString(xl.AddressOne("C", 2),colroot.Get("workCategory"))

                   sheet1.PutString(xl.AddressOne("D", 2),colroot.Get("atmnumber"))

                 sheet1.PutNumber(xl.AddressOne("E", 2),colroot.Get("amount"))

           Next



Have been try to export data from MySQL into excel but only One row is exported. I need help
 
Top