manishjoisar
Programmer
I have data like
Array(0) = "Tgc_No"
Array(1) = "Tgc_Desc"
Array(2) = "Tgc_Quantity"
Array(3) = "Tgc_Rate"
Array(4) = "Tgc_Amount"
I want it to convert as follows
Dim Abc As string
Abc = "Tgc_No,Tgc_Desc,Tgc_Quantity,Tgc_Rate,Tgc_Amount"
Other than loop solutions i.e. direct functions is there to convert
Array(0) = "Tgc_No"
Array(1) = "Tgc_Desc"
Array(2) = "Tgc_Quantity"
Array(3) = "Tgc_Rate"
Array(4) = "Tgc_Amount"
I want it to convert as follows
Dim Abc As string
Abc = "Tgc_No,Tgc_Desc,Tgc_Quantity,Tgc_Rate,Tgc_Amount"
Other than loop solutions i.e. direct functions is there to convert