How can I search through an XML structure to find a specific node, using VBA, based on the node name and value? In other words, is it possible to perform a SQL-like command on the XML structure to find what I'm looking for?
For example, lets say that I have this XML structure:
<House>
<Kitchen>
<Appliance>
<Name>Refrigerator</Name>
<Brand>Maytag</Brand>
<Model>F2039-39</Model>
</Appliance>
<Appliance>
<Name>Toaster</Name>
<Brand>Black and Decker</Brand>
<Model>B8d-k30</Model>
</Appliance>
</Kitchen>
I would like a way to find all toasters, that are made by black and decker, with a model of B8d-k30 using VBA. Is this possible?