Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Boolean check on Excel list data exported as Xml

Status
Not open for further replies.

Taffys19

Technical User
Jul 11, 2008
1
CA
I have created an Excel document with columns A to J as a list with the cells mapped to an Xml schema. I have written the VB script below to export the data on button click, once inputed, to an external Xml file. What I would like to do but, have no idea how to go about it, is to have some kind of yes/no check for each row of data. If yes then it gets exported, if no not. Any help is appeciated... thanks.

My script so far:

Private Sub CommandButton1_Click()
Call ActiveWorkbook.XmlMaps("Xml_Map").Export("MyUrl", True)
End Sub
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top