InDesign :: How To Insert A Table
Feb 7, 2014My table function is greyed out. How do I insert a table?
View 1 RepliesMy table function is greyed out. How do I insert a table?
View 1 RepliesI have only just downloaded indesign and I have completely forgotten how to insert a picture box?
View 2 Replies View RelatedCreating a table of contents
View 13 Replies View RelatedI'm trying to import a table from Excel into Indesign but can't manage it. The internet is full of the tip to use File-->Place and then choose import options, sheet, cell range, formatted table. This does work, sort of, except the Excel table has no numbers and is formatted all whacky and doesn't have the right color.
View 11 Replies View RelatedIf i try to select more than a row or the entire column indesign crash and quit. exported to cs6 and opened it works perfectly. URL....
View 25 Replies View RelatedI'm creating interactive PDFs for a client that include tables with empty cells that will be populated afterwards (depending on what information a customer puts in on a form).
The forms are created in InDesign and exported as interactive PDFs, but I need to be able to name the live fields (in InDesign) before I export the Interactive PDF, so that I don't have to select each indivual field in the final PDF and rename them.
The reason I want to be able to do this pre-PDF production, is because the forms will be rebranded over and over again and I don't want to have to rename hundreds of cells time and time again in Acrobat Pro.
The deveopler who's populating the cells already has predefined names for them, so I can's simply give him the names that Acrobat automatically defines.
I am formatting a Bible for a client. The text was provided with verse numbers before each verse, but each chapter is one long paragraph. Now the client has decided they want each verse to begin a new paragraph. How can I globally insert an End of Paragraph mark before each superscrpt verse number?
View 8 Replies View RelatedIm trying to create a form in Photoshop CS2 and would like to know how to install tables (like in word) so I can format text spacing and lines.
View 2 Replies View RelatedI set up a pretty little table of contents for a handbook and wrestled the styles into place. But, for some reason, I have two page numbers that are wacked out to the right of everything else.
The page numbers are set up on the master page and are very simple. It's the same master for all of the pages.
There are two styles at work in the TOC, messing with those doesnt change anything.
Why would these two, and only these two, get kicked off their mark?
I'm having trouble trying to figure how to create a mini TOC in a book. The content of the book is divided in 6 files.
Sample of how it looks likes
1) - Front cover (Pg 1)
2) - EN (Pg 2-20)
3) - SE (Pg 21-40)
4) - DE (Pg 41-60)
5) - FR (Pg 61-80)
6) - ES (Pg 81-100)
From file 2-6 they have their own TOC. Simple and it works, since each file have their own list.
I'm trying to create a small TOC on the front cover telling me each page numbers for each language file/chapter.
EN............2-20
SE..........21-40
DE..........41-60
FR..........61-80
ES........81-100
At the moment, I do it manually. But, maybe there is no simple solution....
Is there any way to insert a generic table into an assembly file. I don't want to create an iAssembly or use the data to configure the component in any way. I would just like to be able to maintain some design related information within the assembly file, similar to the tables that you can create in an idw. A table just like the iAssembly table would be fine, minus the iAssembly part or any sense of configuration.
View 4 Replies View RelatedI've tried inserting a table from Excel into Photoshop and making a jpeg and gif out of it, but when I upload it to the web the resolution is terrible. How I can make get a table into an image? It's a bit too complex to create with HTML.
View 11 Replies View RelatedI have problem when insert too lenght table from Excel.
Inventor cut column...I used Manage -> Insert Objec
I'm creating a routine to fill in my terminal strips. This routine worked perfectly in Vba but I'm now rewriting it for .NET...The problem is that I want to insert a block with attributes into different cells.The tables already exists. Below my function, I'm stuck on this part
Dim lonReturnedIds = FunBlockId() ' Calls the function FunBlockID to get the ID's of the attributes
' 0 = BlockID
' 1 = AttributeID of KleurB
' 2 = AttributeID of KleurO
TS.Cells(i, intPosition).Contents.Add()
TS.Cells(i, intPosition).Contents(0).BlockTableRecordId = lonReturnedIds(0)
TS.Cells(i, intPosition).SetBlockAttributeValue(lonReturnedIds(1), strCableConductor2WriteFirst)
Public Function Fun_StripUp(ByVal Po3dXY As Point3d, ByVal str_CableName As String, ByVal Str_CableConductor As String, ByVal strCable Conductor 2 Write As String, ByVal strCableConductor2WriteFirst As String, ByVal intPosition As Integer) As StringDim tAcadDoc As ApplicationServices.Document = ApplicationServices.Application.DocumentManager.MdiActiveDocumentDim myDB As.
[code]...
I am trying to insert a table using a data link. I set up the Link through the DataLink manager and then insert the table using a range. I click OK to insert the table and after a few seconds of thinking ACAD sits there with no table on the screen. When I look in XREFs, the DL is there but says it is unrefrenced. Tried multiple ways of entering or setting up information to no avail.
View 6 Replies View RelatedI am insert a sheet list table - Two Columns "Dwg #" and "Sheet Title" under the first category (building 1) each column works fine) then under category 2 (building 2) it gets the file name under the dwg #.
View 2 Replies View RelatedI have to make it possible to insert table by choosing any of it's corners. I cannot get it to work with choosing bottom corners - I can't get the exact height of the table.
The sample code of the one-row table is:
acApp.Document doc = acApp.Application.DocumentManager.MdiActiveDocument;Editor ed = doc.Editor;Transaction tr = ed.Document.Database.TransactionManager.StartTransaction();try{ BlockTable bt = (BlockTable)tr.GetObject(doc.Database.BlockTableId, OpenMode.ForRead); Table tb = new Table(); tb.InsertColumns(0, 24, 1); tb.SetRowHeight(4); tb.Columns[0].Width = 24; tb.Columns[1].Width = 24; tb.Cells[0, 0].TextHeight = 2; tb.Cells[0, 0].TextString = "some text"; tb.Cells[0, 0].Alignment = CellAlignment.MiddleRight; tb.Cells[0, 1].TextHeight = 2; tb.Cells[0, 1].TextString = other_text_from_variable; tb.Cells[0, 1].Alignment = CellAlignment.MiddleCenter; tb.HorizontalCellMargin = 0; tb.VerticalCellMargin = 0; tb.GenerateLayout(); tb.Position = // exactly... what should I do here? BlockTableRecord btr = (BlockTableRecord)tr.GetObject(bt[BlockTableRecord.ModelSpace], OpenMode.ForWrite); btr.AppendEntity(tb); tr.AddNewlyCreatedDBObject(tb, true); tr.Commit();}catch (Autodesk.AutoCAD.Runtime.Exception ex){ ed.WriteMessage("
ERR: " + ex.Message);}finally{ tr.Dispose();}
Now... I'm trying to make 1-row table width the height 4. I should set tb.Position by just subtracting 4 from the Y-value of the clicked point... NOT.
tb.Height gives me 4. But I get the table with height 5.667. And I can't just use that value for subtracting, because even then, bottom-right corner is about 0.2 above or below clicked point... (X-value is correct and equals the clicked point's X-value.)
The same thing happens when I insert a table with the number of rows depending on the number of the records selected from DB. The same thing happens, when I use obsolete .NumRows and .NumColumns. What am I missing?
From Project Navigator, I R-click the Project in the SHEET tab. This is not "lit up" to choose.
I am in my cover sheet, paper space, with 51 sheets in the set.
I tried to use the Sheet Set Manager, but I have the same problem.
We are experiencing a case where the sheet list table will not insert into a page. It works on all other jobs, but this one won't let a sheet list table insert into any page, by any body.
I even tried inserting a block of the table from another set and then updating - all the lines disappeared.
We have done about 200 jobs with these, without trouble and this is the one giving us problems now.
I'm preparing plans for individual land owners. I know I need to filter parcels "by hand", center, zoom, scale etc. I'm using labels to get parcels numbers on the plan but I have to add name into title block. I don't want to use feature labels because concat function does not work (I need to show parcel number) plus the name I need to put on is quite long (it doesn't fit in the drawing).
My question is: Is there a way to put text into drawing / title block from attached table or from feature properties of shp or sdf files?
I am trying to insert "Depth", "Counterbore", etc. Symbols in a revision table, but can't find ALT + XXXX for them. I did find the symbols in the Windows character map in AIGDT font group and they have Character codes but no ALT + codes? How to insert these symbols in a rev table?
View 1 Replies View RelatedI have data in an Excel spreadsheet that I want to insert into the drawing in a table format that replicates my spreadsheet formatting and creates AutoCAD entities as opposed to a bitmap image or the mess the TABLE command generates - I'm looking to keep my text consistent within the drawing and I still use the old SIMPLEX font.
View 5 Replies View RelatedI'm trying to add rows above rows in the middle of a table. The options under Rows are all grey/not available. The last row will allow me to add a row below and the top row will allow me to add a row above. I'm unable to Delete rows, too. The table is not listed as locked or anything. Aside from retyping the table, is there something I need to do to be able to edit the table?
View 9 Replies View Related“insert sheet list table” is not active,
I couldn’t figure out in which cases the “insert sheet list table” (attached) gets not active.
This command is supposed to provide table of contents for the layouts specified in the set of sheets pane
Software: AutoCAD 2014, AutoCAD C3D, AutoCAD M3D, Revit
Windows 7 (Ultimate 64 bits),
Firefox 20.0,
Kaspersky 2013.
I need the logos on this poster to be distributed in alpha order in a grid pattern. Is there an easier way to do this than manually setting them in place? Like a script or something?
View 5 Replies View RelatedI am having an issue with the sheet set manager's tool to insert sheet list table. I have a new sheet set for a new project that was created entirely in Autocad 2012. When I try to insert a new sheet list table, after I click OK in the Sheet list Table dialoge box, it simply closes to an empty command line with nothing inserted. Why nothing is inserted?
View 2 Replies View RelatedThe angle or radius are outside the table boundaries. I have used bend tables before and have not run into this. See screenshot. What I don't understand is that in the error dialog box the Thickness is correct the Radii are correct and the Angle is correct except it is showing a -90 degrees. Is that the problem? The negetive? Why is it showing a negative number. I can't change the way the part is formed. The problem seems to be with the lower left hand curl. It does go ahead and flatten it, but I don't trust the results when I have the three errors.
View 1 Replies View RelatedIn our company, we put Excel tables in our drawings. The reason we've chosen for Excel-tables is that we can adjust the layout of the table quite easily. These tables consist of grouped cells in a particular company-specific layout. We select the range of the desired cells, copy and paste them in our AutoCAD drawing. This drawing is sent to our customers. The disadvantage of this method is, that when our customers (who use CAD-software of other brands) open the dwg, they don't see the table, but some kind of picture of the table.
Is there a way to 'explode' the excel-table, but keep the specific layout of the table? For attributes in blocks there's the 'Explode Attributes'-command in the Express-tools, but is there something similar for Excel-tables?
Product Design Suite 2014
Inventor 2012 SP2, Vault 2014
HP Workstation Z220
Intel Xeon 3.4GHz
16GB RAM
Nvidia Quadro 4000
Windows 7 Professional (64bit)
Is there a way to setup vertical alignment of text in a cell for the entire table, when using Table Tool? It is possible for a single cell, but when selecting a table (or multiple cells) this option is not available.
View 5 Replies View RelatedIs there a way to force the table and table text height to stay constant despite the scale? I can do it for Point Label Styles with an Expression. But in 2011 there is no way to build an expression for a table style.
I want to create tables in the drawing where the points are and then plot them from a drawing they're Xrefed in to. The tables are too small but zooming in doesn't make them any bigger because the scale of the viewport changes and they adjust.
I have a part where I have placed a number of table driven iFeatures. These features generate parameters in the model that I can see in the parameter table. I am trying to find a way to have these iFeature parameters show up in the hole table in my drawing.
By 'exporting' the parameters, I have been able to get the values to show in notes and drawing view labels but I can't find a way to add them as a 'New Property' in my hole table.