cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Want the oppurtunity to discuss enhancements to PTC products? Join a working group! X

Excel scriptable component: one table for different results with autofit and rich text formatting

ifomenko
15-Moonstone

Excel scriptable component: one table for different results with autofit and rich text formatting

Hi,

MCAD15

I want to output different tables (matrix) in one excel table component on my MCAD worksheet.

So, I have to format excel cells (auto fit width and height) before output.

Here attached I upload such component for those who need this.

I add a component with subscript, superscript and line feed formatting also.

 

4 REPLIES 4

Hi

Thank you for sharing it

Terry

Here I added the ability to assign font size and RTF flag to disable RTF formatting for the fastest output of a table.

Now, famous screen updating problem of excel is half solved

I changed

For i

 For j

 Cell.Value =Data(i,j)

with this one

DataRange.Resize(UBound(Data, 1)+1, UBound(Data, 2)+1) = Data

While I seldom use Excel components in my work this seems to be some good work done and its nice you share it with us. Thanks!

 

ifomenko
15-Moonstone
(To:Werner_E)

I changed "." to "_" for subscript because of the situation with vector output in the string form "1.1,1.2,1.3".

In this case, my script makes symbols after dot as a subscript, it`s not right.

There is one more problem with excel formatting - it`s impossible to create subscript in superscript or superscript in subscript. I don`t need this but ...

 

Top Tags