Hi, all.
I searched the forums, but didn't find anything on this. Is there a macro to force the columns in a table to be all the same width? Or is there another easy way to do this with NWP (2.0.5)?
Attached is a file that shows that the first column is slightly narrower than the other two, thus the text, though uniform in all three columns, takes up more lines in column one.
I think this is happening because the files are being imported into NWP from MS WORD files.
Thanks.
Macro to make columns in table of uniform width
Macro to make columns in table of uniform width
- Attachments
-
sample of various width columns.rtf
- 3 columns; 1st is narrower
- (11.79 KiB) Downloaded 790 times
Re: Macro to make columns in table of uniform width
Ah, I see! Select the Table and then use the Table > Distribute Columns Evenly command. Not so hard after all! An aside: is there a way to see numerically the widths of the columns and tweak them?
Re: Macro to make columns in table of uniform width
Yes. Since the last update the Nisus Macro language has commands to check and modify various table cell attributes, including the width. You should look in the macro reference (in the help menu).NisusUser wrote:An aside: is there a way to see numerically the widths of the columns and tweak them?
I haven't had much time to try these things yet, but here is a macro that will give the width of the columns of a the first table in the document. This should give an idea how to start to write a macro that can change the width in the desired way.
philip
- martin
- Official Nisus Person
- Posts: 5230
- Joined: 2002-07-11 17:14:10
- Location: San Diego, CA
- Contact:
Re: Macro to make columns in table of uniform width
Not using the regular interface, but as Philip says, macros recently gained this functionality.NisusUser wrote:is there a way to see numerically the widths of the columns and tweak them?
Here's a macro that shows you the column widths for the selected table and lets you adjust them numerically. As an aside, the macro name "Table Column Width Adjuster" may seem awkward, but once you build up a lot of macros I've found it's very useful to have the names start with a relevant noun. It's very slow to go through a list of macros starting with generic verbs like "Change", "Convert", "Create", etc.
- Attachments
-
Table Column Width Adjuster.nwm
- (19.1 KiB) Downloaded 781 times
Re: Macro to make columns in table of uniform width
Thank you to both of you for your help!