में परिवर्तित करने के लिए कैसे करें मेरे पास एक एक्सएसडी फ़ाइल है और मुझे इसे एमएस एक्सेल फ़ाइल में कनवर्ट करने की आवश्यकता है। एक्सएसडी नीचे है।एक्सएसडी फ़ाइल को एक्सएलएस
<?xml version="1.0" encoding="ISO-8859-1" ?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="shiporder">
<xs:complexType>
<xs:sequence>
<xs:element name="orderperson" type="xs:string"/>
<xs:element name="shipto">
<xs:complexType>
<xs:sequence>
<xs:element name="name" type="xs:string"/>
<xs:element name="address" type="xs:string"/>
<xs:element name="city" type="xs:string"/>
<xs:element name="country" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="item" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="title" type="xs:string"/>
<xs:element name="note" type="xs:string" minOccurs="0"/>
<xs:element name="quantity" type="xs:positiveInteger"/>
<xs:element name="price" type="xs:decimal"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="orderid" type="xs:string" use="required"/>
</xs:complexType>
</xs:element>
</xs:schema>
Pls मेरी मदद करते हैं, मैं वास्तव में नहीं जानता कि कैसे और कहां से शुरू किया जाए।
एक्सेल फ़ाइल में आप किस डेटा को देखने की उम्मीद करते हैं? एक्सेल एकाधिक फ़ाइल स्वरूपों का समर्थन करता है। सबसे आसान एक CSV फ़ाइल बना सकते हैं और Excel में लोड करने के लिए है। – Madushan
एक्सएसएल एक्सेल के समान नहीं है। – FJT
आपका प्रश्न यह सब स्पष्ट नहीं है। क्या आप एक्सेल में एक्सएसडी को कन्वर्ट करना चाहते हैं? पहला जवाब बताता है कि आप एक्सेल में एक्सएमएल डेटा आयात करने के लिए एक्सएसडी का उपयोग करना चाहते हैं? – SunSear