Message 1 of 9
cell table prefix and suffix
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
i have cell values in a table that are summed up with a formula. How do i add a prefix and suffix to these values so they sill work with the sum formula
Sub Example_CellManipulation() Dim MyModelSpace As AcadModelSpace Set MyModelSpace = ThisDrawing.ModelSpace Dim pt(2) As Double Dim MyTable As AcadTable Dim cName As String Set MyTable = MyModelSpace.AddTable(pt, 5, 5, 0.5, 0.5) MyTable.SetText 3, 4, "(" & 4 & ")" MyTable.SetText 4, 4, "=Sum(E1:E4)" ZoomExtents End Sub
. I am trying this and it is not working