Community Tip - Need to share some code when posting a question or reply? Make sure to use the "Insert code sample" menu option. Learn more! X
Hi,
I’m looking for some help with coding a script that can extract information (such as section type and associated loads) from an external source, like Excel, and import it into a developed Mathcad sheet. The goal is to check section capacity in accordance with the relevant codes and standards.
I appreciate this request may be a bit broad, and I am aware some example codes exist here: Code Examples. However, as I’m new to this, I would greatly appreciate any guidance or assistance in streamlining the script.
Kind regards,
Iain
Note, I am using Mathcad Prime 10.0.0.0
Edit:
We are looking to create Mathcad files based on an original worksheet, using externally sourced data from Excel.
Hi,
You can use READEXCEL and WRITEEXCEL simple functions to exchange data with EXCEL rather than the more cumbersome API coding.
Look them up in help. You can use a helper wizard on the menu ribbon to use READEXCEL.. Input/Output | Data Import/Export | ReadExcel.
Cheers
Terry
Thank you, apologies, I have updated my request in the original post.
Take a look at the source code for the MathcadPy library along with the examples to see how you can interact via Python. The VBA commands in Excel are pretty similar to the backend code of that library.
https://github.com/MattWoodhead/MathcadPy/blob/master/examples.py
Thank you for the help, will take a look.