Both fixed width and autofit columns in same table?

This forum is for all Flare issues not related to any of the other categories.
Post Reply
TraceyYates
Propeller Head
Posts: 61
Joined: Fri Oct 15, 2010 7:50 am

Both fixed width and autofit columns in same table?

Post by TraceyYates »

I would like to have tables where I can specify the width of all columns except the right-most column, which I'd like to be a variable-width column based on the the output window width. Right now, I am using the table property Fixed column width for the whole table, which has been fine in the past when we were doing PDF output. Now that we're doing WebHelp with the same content, the table often looks a bit silly in the output with a wider browser window--all my paragraphs are the full width of the browser window, but the table has a lot of white space to the right of it. (see attached image)

Is there a way to set the right-most column to a variable width, but leave the others fixed? I'm using several table style sheets and a regular style sheet.

Thanks,
Tracey
You do not have the required permissions to view the files attached to this post.
nickatwork
Sr. Propeller Head
Posts: 457
Joined: Thu Sep 16, 2010 6:31 am
Location: London

Re: Both fixed width and autofit columns in same table?

Post by nickatwork »

Sure can.
I use a 2 column table like you have, the first column is 125px, the other is 'auto' and the whole table is auto. Means I have a nice sized column on the left and a dynamic column on the right.
In the table stylesheet just set the right column to Width: (not set) - delete whatever measurement is in there. Also, set table margains to (not set) and it should work.

Thanks
TraceyYates
Propeller Head
Posts: 61
Joined: Fri Oct 15, 2010 7:50 am

Re: Both fixed width and autofit columns in same table?

Post by TraceyYates »

Sweeeeet! It worked! Thanks so much! :-)

Tracey
Spectre
Sr. Propeller Head
Posts: 128
Joined: Tue Jun 17, 2008 5:50 am

Re: Both fixed width and autofit columns in same table?

Post by Spectre »

Hi,

This is exactly what I want, one or more left hand columns of a restricted width, with the right hand column, which contains most of the text, stretching across the screen in online output. But I'm having problems making it happen. I'm producing PDF and HTML outputs,

I have a table style with a couple of custom columns.

If I click in the table and look at the spans at the top of the page, then I can see that overall, my table is auto. And I set that by going Table Properties>Autofit to window>Auto. Though when I now go back into Table Properties, the Autofit Behavior is back at Fixed Width.

I've set up a custom column with "not set" as the width. However, when I apply this custom column to the right hand column in my table, I don't get an "auto" setting for the column, and it still shows a specific fixed width in HTML output. How do I make the right hand column variable width. I don't want to force my table style to have a set number of columns, which may be the difference between my non-working approach and Tracey's.

Thanks.
Spectre
Sr. Propeller Head
Posts: 128
Joined: Tue Jun 17, 2008 5:50 am

Re: Both fixed width and autofit columns in same table?

Post by Spectre »

Hi,

Can I ask again about this?

I have both print and HTML outputs, so I'm trying to make the tables fit both formats. I may have 2 or 3 column tables, but the basic point is that I want to restrict the width of the first column, or the first and second columns, and make the remaining column dynamic.

I've created custom columns to use with columns 1 and 2, with different settings for print and HTML. My main problem seems to be in making the remaining column automatically adjust. How do you do it? What are the settings in Table Properties, and in the remaining column to enable this? Oddly enough I have an example that works, but I seem unable to replicate it. The remaining column keeps defaulting to 200px.

Many thanks.
ChoccieMuffin
Senior Propellus Maximus
Posts: 2650
Joined: Wed Apr 14, 2010 8:01 am
Location: Surrey, UK

Re: Both fixed width and autofit columns in same table?

Post by ChoccieMuffin »

Rather than using custom columns, have you defined table stylesheets for your tables? I've done a set of them, where the first column is set and the rest are auto, and where the first two columns are set and the rest are auto.

Here's the code behind my most common one, where the first column is 20em and columns 2-5 are auto.

Code: Select all

/* MadCap Table Style: */

/*<meta Version="9" />*/

@media print
{
	mcTableStyle
	{
		margin-left: 1in;
		mc-hide-bottom-ruling: false;
	}

	mcTableColumnStyle
	{
		size: 15em;
		cell-padding-right: 0.5em;
	}

	mcTableColumnStyle
	{
		cell-padding-right: 0.5em;
	}

	mcTableColumnStyle
	{
		cell-padding-right: 0.5em;
	}

	mcTableColumnStyle
	{
		cell-padding-right: 0.5em;
	}

	mcTableColumnStyle
	{
		
	}

	mcTableHeadStyle
	{
		separator-style: solid;
		separator-width: 0.5pt;
		separator-color: #a9a9a9;
	}

	mcTableBodyStyle
	{
		cell-padding-right: 0.5em;
		cell-padding-top: 0.5mm;
		cell-padding-bottom: 0.5mm;
		separator-style: solid;
		separator-width: 0.5pt;
		separator-color: #a9a9a9;
	}

	mcTableFootStyle
	{
		
	}
}

@media non-print
{
	mcTableStyle
	{
		border-left-style: none;
		border-right-style: none;
		border-top-style: none;
		border-bottom-style: none;
	}

	mcTableColumnStyle
	{
		cell-padding-right: 0.5em;
		size: 15.00em;
	}

	mcTableColumnStyle
	{
		cell-padding-right: 0.5em;
	}

	mcTableColumnStyle
	{
		cell-padding-right: 0.5em;
	}

	mcTableColumnStyle
	{
		cell-padding-right: 0.5em;
	}

	mcTableColumnStyle
	{
		
	}

	mcTableHeadStyle
	{
		cell-padding-right: 0.5em;
		separator-style: solid;
		separator-width: 1px;
		separator-color: #a9a9a9;
	}

	mcTableBodyStyle
	{
		separator-style: solid;
		separator-width: 1px;
		separator-color: #a9a9a9;
	}

	mcTableFootStyle
	{
		cell-padding-right: 0.5em;
	}
}

mcTableStyle
{
	name: 1medium-2to5auto;
	border-collapse: collapse;
	border-left-style: none;
	border-right-style: none;
	border-top-style: none;
	border-bottom-style: none;
	max-id: 7;
}

mcTableColumnStyle
{
	span: 1;
	separator-style: none;
	name: Column1;
	id: 0;
}

mcTableColumnStyle
{
	span: 1;
	id: 4;
	name: Column2;
}

mcTableColumnStyle
{
	span: 1;
	id: 5;
	name: Column3;
}

mcTableColumnStyle
{
	span: 1;
	id: 6;
	name: Column4;
}

mcTableColumnStyle
{
	span: 1;
	id: 7;
	name: Column5;
}

mcTableHeadStyle
{
	span: 1;
	separator-style: none;
	name: Header1;
	id: 2;
}

mcTableBodyStyle
{
	span: 1;
	name: Body1;
	id: 1;
}

mcTableFootStyle
{
	span: 1;
	separator-style: none;
	name: Footer1;
	id: 3;
}


/* Cell Styles: */
 
@media print
{
	.TableStyle-1medium-2to5auto
	{
		mc-hide-bottom-ruling: false;
		margin-left: 1in;
		border-spacing: 0px 0px;
	}

	.TableStyle-1medium-2to5auto-Column-Column1
	{
		width: 15em;
	}

	.TableStyle-1medium-2to5auto-HeadI-Column1-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadE-Column1-Header1
	{
		padding-right: 0.5em;
		border-bottom-width: 0.5pt;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-HeadF-Column1-Header1
	{
		padding-right: 0.5em;
		border-bottom-width: 0.5pt;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-HeadH-Column1-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadD-Column1-Header1
	{
		padding-right: 0.5em;
		border-bottom-width: 0.5pt;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-HeadC-Column1-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadB-Column1-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadA-Column1-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadG-Column1-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadI-Column2-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadE-Column2-Header1
	{
		padding-right: 0.5em;
		border-bottom-width: 0.5pt;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-HeadF-Column2-Header1
	{
		padding-right: 0.5em;
		border-bottom-width: 0.5pt;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-HeadH-Column2-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadD-Column2-Header1
	{
		padding-right: 0.5em;
		border-bottom-width: 0.5pt;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-HeadC-Column2-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadB-Column2-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadA-Column2-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadG-Column2-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadI-Column3-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadE-Column3-Header1
	{
		padding-right: 0.5em;
		border-bottom-width: 0.5pt;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-HeadF-Column3-Header1
	{
		padding-right: 0.5em;
		border-bottom-width: 0.5pt;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-HeadH-Column3-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadD-Column3-Header1
	{
		padding-right: 0.5em;
		border-bottom-width: 0.5pt;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-HeadC-Column3-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadB-Column3-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadA-Column3-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadG-Column3-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadI-Column4-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadE-Column4-Header1
	{
		padding-right: 0.5em;
		border-bottom-width: 0.5pt;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-HeadF-Column4-Header1
	{
		padding-right: 0.5em;
		border-bottom-width: 0.5pt;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-HeadH-Column4-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadD-Column4-Header1
	{
		padding-right: 0.5em;
		border-bottom-width: 0.5pt;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-HeadC-Column4-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadB-Column4-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadA-Column4-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadG-Column4-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadE-Column5-Header1
	{
		border-bottom-width: 0.5pt;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-HeadF-Column5-Header1
	{
		border-bottom-width: 0.5pt;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-HeadD-Column5-Header1
	{
		border-bottom-width: 0.5pt;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-FootI-Column1-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootE-Column1-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootF-Column1-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootH-Column1-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootD-Column1-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootC-Column1-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootB-Column1-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootA-Column1-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootG-Column1-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootI-Column2-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootE-Column2-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootF-Column2-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootH-Column2-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootD-Column2-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootC-Column2-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootB-Column2-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootA-Column2-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootG-Column2-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootI-Column3-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootE-Column3-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootF-Column3-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootH-Column3-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootD-Column3-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootC-Column3-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootB-Column3-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootA-Column3-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootG-Column3-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootI-Column4-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootE-Column4-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootF-Column4-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootH-Column4-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootD-Column4-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootC-Column4-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootB-Column4-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootA-Column4-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootG-Column4-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyI-Column1-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyE-Column1-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		border-bottom-width: 0.5pt;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyF-Column1-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		border-bottom-width: 0.5pt;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyH-Column1-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyD-Column1-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		border-bottom-width: 0.5pt;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyC-Column1-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyB-Column1-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyA-Column1-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyG-Column1-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyI-Column2-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyE-Column2-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		border-bottom-width: 0.5pt;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyF-Column2-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		border-bottom-width: 0.5pt;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyH-Column2-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyD-Column2-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		border-bottom-width: 0.5pt;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyC-Column2-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyB-Column2-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyA-Column2-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyG-Column2-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyI-Column3-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyE-Column3-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		border-bottom-width: 0.5pt;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyF-Column3-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		border-bottom-width: 0.5pt;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyH-Column3-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyD-Column3-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		border-bottom-width: 0.5pt;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyC-Column3-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyB-Column3-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyA-Column3-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyG-Column3-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyI-Column4-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyE-Column4-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		border-bottom-width: 0.5pt;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyF-Column4-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		border-bottom-width: 0.5pt;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyH-Column4-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyD-Column4-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		border-bottom-width: 0.5pt;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyC-Column4-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyB-Column4-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyA-Column4-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyG-Column4-Body1
	{
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyI-Column5-Body1
	{
		padding-right: 0.5em;
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
	}

	.TableStyle-1medium-2to5auto-BodyE-Column5-Body1
	{
		padding-right: 0.5em;
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		border-bottom-width: 0.5pt;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-BodyF-Column5-Body1
	{
		padding-right: 0.5em;
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		border-bottom-width: 0.5pt;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-BodyH-Column5-Body1
	{
		padding-right: 0.5em;
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
	}

	.TableStyle-1medium-2to5auto-BodyD-Column5-Body1
	{
		padding-right: 0.5em;
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
		border-bottom-width: 0.5pt;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-BodyC-Column5-Body1
	{
		padding-right: 0.5em;
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
	}

	.TableStyle-1medium-2to5auto-BodyB-Column5-Body1
	{
		padding-right: 0.5em;
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
	}

	.TableStyle-1medium-2to5auto-BodyA-Column5-Body1
	{
		padding-right: 0.5em;
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
	}

	.TableStyle-1medium-2to5auto-BodyG-Column5-Body1
	{
		padding-right: 0.5em;
		padding-top: 0.5mm;
		padding-bottom: 0.5mm;
	}
}

@media non-print
{
	.TableStyle-1medium-2to5auto
	{
		border-left-style: none;
		border-right-style: none;
		border-top-style: none;
		border-bottom-style: none;
		border-spacing: 0px 0px;
	}

	.TableStyle-1medium-2to5auto-Column-Column1
	{
		width: 15.00em;
	}

	.TableStyle-1medium-2to5auto-HeadI-Column1-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadE-Column1-Header1
	{
		padding-right: 0.5em;
		border-bottom-width: 1px;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-HeadF-Column1-Header1
	{
		padding-right: 0.5em;
		border-bottom-width: 1px;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-HeadH-Column1-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadD-Column1-Header1
	{
		padding-right: 0.5em;
		border-bottom-width: 1px;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-HeadC-Column1-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadB-Column1-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadA-Column1-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadG-Column1-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadI-Column2-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadE-Column2-Header1
	{
		padding-right: 0.5em;
		border-bottom-width: 1px;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-HeadF-Column2-Header1
	{
		padding-right: 0.5em;
		border-bottom-width: 1px;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-HeadH-Column2-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadD-Column2-Header1
	{
		padding-right: 0.5em;
		border-bottom-width: 1px;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-HeadC-Column2-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadB-Column2-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadA-Column2-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadG-Column2-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadI-Column3-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadE-Column3-Header1
	{
		padding-right: 0.5em;
		border-bottom-width: 1px;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-HeadF-Column3-Header1
	{
		padding-right: 0.5em;
		border-bottom-width: 1px;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-HeadH-Column3-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadD-Column3-Header1
	{
		padding-right: 0.5em;
		border-bottom-width: 1px;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-HeadC-Column3-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadB-Column3-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadA-Column3-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadG-Column3-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadI-Column4-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadE-Column4-Header1
	{
		padding-right: 0.5em;
		border-bottom-width: 1px;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-HeadF-Column4-Header1
	{
		padding-right: 0.5em;
		border-bottom-width: 1px;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-HeadH-Column4-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadD-Column4-Header1
	{
		padding-right: 0.5em;
		border-bottom-width: 1px;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-HeadC-Column4-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadB-Column4-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadA-Column4-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadG-Column4-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadI-Column5-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadE-Column5-Header1
	{
		padding-right: 0.5em;
		border-bottom-width: 1px;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-HeadF-Column5-Header1
	{
		padding-right: 0.5em;
		border-bottom-width: 1px;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-HeadH-Column5-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadD-Column5-Header1
	{
		padding-right: 0.5em;
		border-bottom-width: 1px;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-HeadC-Column5-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadB-Column5-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadA-Column5-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-HeadG-Column5-Header1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootI-Column1-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootE-Column1-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootF-Column1-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootH-Column1-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootD-Column1-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootC-Column1-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootB-Column1-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootA-Column1-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootG-Column1-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootI-Column2-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootE-Column2-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootF-Column2-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootH-Column2-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootD-Column2-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootC-Column2-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootB-Column2-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootA-Column2-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootG-Column2-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootI-Column3-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootE-Column3-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootF-Column3-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootH-Column3-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootD-Column3-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootC-Column3-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootB-Column3-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootA-Column3-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootG-Column3-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootI-Column4-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootE-Column4-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootF-Column4-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootH-Column4-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootD-Column4-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootC-Column4-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootB-Column4-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootA-Column4-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootG-Column4-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootI-Column5-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootE-Column5-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootF-Column5-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootH-Column5-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootD-Column5-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootC-Column5-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootB-Column5-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootA-Column5-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-FootG-Column5-Footer1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyI-Column1-Body1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyE-Column1-Body1
	{
		border-bottom-width: 1px;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyF-Column1-Body1
	{
		border-bottom-width: 1px;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyH-Column1-Body1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyD-Column1-Body1
	{
		border-bottom-width: 1px;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyC-Column1-Body1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyB-Column1-Body1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyA-Column1-Body1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyG-Column1-Body1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyI-Column2-Body1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyE-Column2-Body1
	{
		border-bottom-width: 1px;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyF-Column2-Body1
	{
		border-bottom-width: 1px;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyH-Column2-Body1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyD-Column2-Body1
	{
		border-bottom-width: 1px;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyC-Column2-Body1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyB-Column2-Body1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyA-Column2-Body1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyG-Column2-Body1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyI-Column3-Body1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyE-Column3-Body1
	{
		border-bottom-width: 1px;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyF-Column3-Body1
	{
		border-bottom-width: 1px;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyH-Column3-Body1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyD-Column3-Body1
	{
		border-bottom-width: 1px;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyC-Column3-Body1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyB-Column3-Body1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyA-Column3-Body1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyG-Column3-Body1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyI-Column4-Body1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyE-Column4-Body1
	{
		border-bottom-width: 1px;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyF-Column4-Body1
	{
		border-bottom-width: 1px;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyH-Column4-Body1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyD-Column4-Body1
	{
		border-bottom-width: 1px;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyC-Column4-Body1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyB-Column4-Body1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyA-Column4-Body1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyG-Column4-Body1
	{
		padding-right: 0.5em;
	}

	.TableStyle-1medium-2to5auto-BodyE-Column5-Body1
	{
		border-bottom-width: 1px;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-BodyF-Column5-Body1
	{
		border-bottom-width: 1px;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}

	.TableStyle-1medium-2to5auto-BodyD-Column5-Body1
	{
		border-bottom-width: 1px;
		border-bottom-color: #a9a9a9;
		border-bottom-style: solid;
	}
}

.TableStyle-1medium-2to5auto
{
	border-collapse: collapse;
	border-left-style: none;
	border-right-style: none;
	border-top-style: none;
	border-bottom-style: none;
	border-spacing: 0px 0px;
}

.TableStyle-1medium-2to5auto-Column-Column1
{
	
}

.TableStyle-1medium-2to5auto-Column-Column2
{
	
}

.TableStyle-1medium-2to5auto-Column-Column3
{
	
}

.TableStyle-1medium-2to5auto-Column-Column4
{
	
}

.TableStyle-1medium-2to5auto-Column-Column5
{
	
}

.TableStyle-1medium-2to5auto-Head-Header1
{
	
}

.TableStyle-1medium-2to5auto-HeadI-Column1-Header1
{
	
}

.TableStyle-1medium-2to5auto-HeadI-Column1-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadE-Column1-Header1
{
	border-right-style: none;
	border-bottom-style: none;
}

.TableStyle-1medium-2to5auto-HeadE-Column1-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadF-Column1-Header1
{
	border-bottom-style: none;
}

.TableStyle-1medium-2to5auto-HeadF-Column1-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadH-Column1-Header1
{
	border-right-style: none;
}

.TableStyle-1medium-2to5auto-HeadH-Column1-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadD-Column1-Header1
{
	border-bottom-style: none;
}

.TableStyle-1medium-2to5auto-HeadD-Column1-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadC-Column1-Header1
{
	
}

.TableStyle-1medium-2to5auto-HeadC-Column1-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadB-Column1-Header1
{
	border-right-style: none;
}

.TableStyle-1medium-2to5auto-HeadB-Column1-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadA-Column1-Header1
{
	
}

.TableStyle-1medium-2to5auto-HeadA-Column1-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadG-Column1-Header1
{
	
}

.TableStyle-1medium-2to5auto-HeadG-Column1-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadI-Column2-Header1
{
	
}

.TableStyle-1medium-2to5auto-HeadI-Column2-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadE-Column2-Header1
{
	border-bottom-style: none;
}

.TableStyle-1medium-2to5auto-HeadE-Column2-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadF-Column2-Header1
{
	border-bottom-style: none;
}

.TableStyle-1medium-2to5auto-HeadF-Column2-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadH-Column2-Header1
{
	
}

.TableStyle-1medium-2to5auto-HeadH-Column2-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadD-Column2-Header1
{
	border-bottom-style: none;
}

.TableStyle-1medium-2to5auto-HeadD-Column2-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadC-Column2-Header1
{
	
}

.TableStyle-1medium-2to5auto-HeadC-Column2-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadB-Column2-Header1
{
	
}

.TableStyle-1medium-2to5auto-HeadB-Column2-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadA-Column2-Header1
{
	
}

.TableStyle-1medium-2to5auto-HeadA-Column2-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadG-Column2-Header1
{
	
}

.TableStyle-1medium-2to5auto-HeadG-Column2-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadI-Column3-Header1
{
	
}

.TableStyle-1medium-2to5auto-HeadI-Column3-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadE-Column3-Header1
{
	border-bottom-style: none;
}

.TableStyle-1medium-2to5auto-HeadE-Column3-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadF-Column3-Header1
{
	border-bottom-style: none;
}

.TableStyle-1medium-2to5auto-HeadF-Column3-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadH-Column3-Header1
{
	
}

.TableStyle-1medium-2to5auto-HeadH-Column3-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadD-Column3-Header1
{
	border-bottom-style: none;
}

.TableStyle-1medium-2to5auto-HeadD-Column3-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadC-Column3-Header1
{
	
}

.TableStyle-1medium-2to5auto-HeadC-Column3-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadB-Column3-Header1
{
	
}

.TableStyle-1medium-2to5auto-HeadB-Column3-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadA-Column3-Header1
{
	
}

.TableStyle-1medium-2to5auto-HeadA-Column3-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadG-Column3-Header1
{
	
}

.TableStyle-1medium-2to5auto-HeadG-Column3-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadI-Column4-Header1
{
	
}

.TableStyle-1medium-2to5auto-HeadI-Column4-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadE-Column4-Header1
{
	border-bottom-style: none;
}

.TableStyle-1medium-2to5auto-HeadE-Column4-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadF-Column4-Header1
{
	border-bottom-style: none;
}

.TableStyle-1medium-2to5auto-HeadF-Column4-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadH-Column4-Header1
{
	
}

.TableStyle-1medium-2to5auto-HeadH-Column4-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadD-Column4-Header1
{
	border-bottom-style: none;
}

.TableStyle-1medium-2to5auto-HeadD-Column4-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadC-Column4-Header1
{
	
}

.TableStyle-1medium-2to5auto-HeadC-Column4-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadB-Column4-Header1
{
	
}

.TableStyle-1medium-2to5auto-HeadB-Column4-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadA-Column4-Header1
{
	
}

.TableStyle-1medium-2to5auto-HeadA-Column4-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadG-Column4-Header1
{
	
}

.TableStyle-1medium-2to5auto-HeadG-Column4-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadI-Column5-Header1
{
	
}

.TableStyle-1medium-2to5auto-HeadI-Column5-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadE-Column5-Header1
{
	border-bottom-style: none;
}

.TableStyle-1medium-2to5auto-HeadE-Column5-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadF-Column5-Header1
{
	border-bottom-style: none;
}

.TableStyle-1medium-2to5auto-HeadF-Column5-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadH-Column5-Header1
{
	
}

.TableStyle-1medium-2to5auto-HeadH-Column5-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadD-Column5-Header1
{
	border-bottom-style: none;
}

.TableStyle-1medium-2to5auto-HeadD-Column5-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadC-Column5-Header1
{
	
}

.TableStyle-1medium-2to5auto-HeadC-Column5-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadB-Column5-Header1
{
	
}

.TableStyle-1medium-2to5auto-HeadB-Column5-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadA-Column5-Header1
{
	
}

.TableStyle-1medium-2to5auto-HeadA-Column5-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-HeadG-Column5-Header1
{
	
}

.TableStyle-1medium-2to5auto-HeadG-Column5-Header1 p
{
	
}

.TableStyle-1medium-2to5auto-Foot-Footer1
{
	
}

.TableStyle-1medium-2to5auto-FootI-Column1-Footer1
{
	
}

.TableStyle-1medium-2to5auto-FootI-Column1-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootE-Column1-Footer1
{
	border-right-style: none;
	border-top-style: none;
}

.TableStyle-1medium-2to5auto-FootE-Column1-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootF-Column1-Footer1
{
	border-top-style: none;
}

.TableStyle-1medium-2to5auto-FootF-Column1-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootH-Column1-Footer1
{
	border-right-style: none;
}

.TableStyle-1medium-2to5auto-FootH-Column1-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootD-Column1-Footer1
{
	border-top-style: none;
}

.TableStyle-1medium-2to5auto-FootD-Column1-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootC-Column1-Footer1
{
	
}

.TableStyle-1medium-2to5auto-FootC-Column1-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootB-Column1-Footer1
{
	border-right-style: none;
}

.TableStyle-1medium-2to5auto-FootB-Column1-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootA-Column1-Footer1
{
	
}

.TableStyle-1medium-2to5auto-FootA-Column1-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootG-Column1-Footer1
{
	
}

.TableStyle-1medium-2to5auto-FootG-Column1-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootI-Column2-Footer1
{
	
}

.TableStyle-1medium-2to5auto-FootI-Column2-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootE-Column2-Footer1
{
	border-top-style: none;
}

.TableStyle-1medium-2to5auto-FootE-Column2-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootF-Column2-Footer1
{
	border-top-style: none;
}

.TableStyle-1medium-2to5auto-FootF-Column2-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootH-Column2-Footer1
{
	
}

.TableStyle-1medium-2to5auto-FootH-Column2-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootD-Column2-Footer1
{
	border-top-style: none;
}

.TableStyle-1medium-2to5auto-FootD-Column2-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootC-Column2-Footer1
{
	
}

.TableStyle-1medium-2to5auto-FootC-Column2-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootB-Column2-Footer1
{
	
}

.TableStyle-1medium-2to5auto-FootB-Column2-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootA-Column2-Footer1
{
	
}

.TableStyle-1medium-2to5auto-FootA-Column2-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootG-Column2-Footer1
{
	
}

.TableStyle-1medium-2to5auto-FootG-Column2-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootI-Column3-Footer1
{
	
}

.TableStyle-1medium-2to5auto-FootI-Column3-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootE-Column3-Footer1
{
	border-top-style: none;
}

.TableStyle-1medium-2to5auto-FootE-Column3-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootF-Column3-Footer1
{
	border-top-style: none;
}

.TableStyle-1medium-2to5auto-FootF-Column3-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootH-Column3-Footer1
{
	
}

.TableStyle-1medium-2to5auto-FootH-Column3-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootD-Column3-Footer1
{
	border-top-style: none;
}

.TableStyle-1medium-2to5auto-FootD-Column3-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootC-Column3-Footer1
{
	
}

.TableStyle-1medium-2to5auto-FootC-Column3-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootB-Column3-Footer1
{
	
}

.TableStyle-1medium-2to5auto-FootB-Column3-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootA-Column3-Footer1
{
	
}

.TableStyle-1medium-2to5auto-FootA-Column3-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootG-Column3-Footer1
{
	
}

.TableStyle-1medium-2to5auto-FootG-Column3-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootI-Column4-Footer1
{
	
}

.TableStyle-1medium-2to5auto-FootI-Column4-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootE-Column4-Footer1
{
	border-top-style: none;
}

.TableStyle-1medium-2to5auto-FootE-Column4-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootF-Column4-Footer1
{
	border-top-style: none;
}

.TableStyle-1medium-2to5auto-FootF-Column4-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootH-Column4-Footer1
{
	
}

.TableStyle-1medium-2to5auto-FootH-Column4-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootD-Column4-Footer1
{
	border-top-style: none;
}

.TableStyle-1medium-2to5auto-FootD-Column4-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootC-Column4-Footer1
{
	
}

.TableStyle-1medium-2to5auto-FootC-Column4-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootB-Column4-Footer1
{
	
}

.TableStyle-1medium-2to5auto-FootB-Column4-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootA-Column4-Footer1
{
	
}

.TableStyle-1medium-2to5auto-FootA-Column4-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootG-Column4-Footer1
{
	
}

.TableStyle-1medium-2to5auto-FootG-Column4-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootI-Column5-Footer1
{
	
}

.TableStyle-1medium-2to5auto-FootI-Column5-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootE-Column5-Footer1
{
	border-top-style: none;
}

.TableStyle-1medium-2to5auto-FootE-Column5-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootF-Column5-Footer1
{
	border-top-style: none;
}

.TableStyle-1medium-2to5auto-FootF-Column5-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootH-Column5-Footer1
{
	
}

.TableStyle-1medium-2to5auto-FootH-Column5-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootD-Column5-Footer1
{
	border-top-style: none;
}

.TableStyle-1medium-2to5auto-FootD-Column5-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootC-Column5-Footer1
{
	
}

.TableStyle-1medium-2to5auto-FootC-Column5-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootB-Column5-Footer1
{
	
}

.TableStyle-1medium-2to5auto-FootB-Column5-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootA-Column5-Footer1
{
	
}

.TableStyle-1medium-2to5auto-FootA-Column5-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-FootG-Column5-Footer1
{
	
}

.TableStyle-1medium-2to5auto-FootG-Column5-Footer1 p
{
	
}

.TableStyle-1medium-2to5auto-Body-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyI-Column1-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyI-Column1-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyE-Column1-Body1
{
	border-right-style: none;
}

.TableStyle-1medium-2to5auto-BodyE-Column1-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyF-Column1-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyF-Column1-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyH-Column1-Body1
{
	border-right-style: none;
}

.TableStyle-1medium-2to5auto-BodyH-Column1-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyD-Column1-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyD-Column1-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyC-Column1-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyC-Column1-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyB-Column1-Body1
{
	border-right-style: none;
}

.TableStyle-1medium-2to5auto-BodyB-Column1-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyA-Column1-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyA-Column1-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyG-Column1-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyG-Column1-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyI-Column2-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyI-Column2-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyE-Column2-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyE-Column2-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyF-Column2-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyF-Column2-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyH-Column2-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyH-Column2-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyD-Column2-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyD-Column2-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyC-Column2-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyC-Column2-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyB-Column2-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyB-Column2-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyA-Column2-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyA-Column2-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyG-Column2-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyG-Column2-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyI-Column3-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyI-Column3-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyE-Column3-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyE-Column3-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyF-Column3-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyF-Column3-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyH-Column3-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyH-Column3-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyD-Column3-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyD-Column3-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyC-Column3-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyC-Column3-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyB-Column3-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyB-Column3-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyA-Column3-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyA-Column3-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyG-Column3-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyG-Column3-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyI-Column4-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyI-Column4-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyE-Column4-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyE-Column4-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyF-Column4-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyF-Column4-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyH-Column4-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyH-Column4-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyD-Column4-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyD-Column4-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyC-Column4-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyC-Column4-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyB-Column4-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyB-Column4-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyA-Column4-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyA-Column4-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyG-Column4-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyG-Column4-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyI-Column5-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyI-Column5-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyE-Column5-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyE-Column5-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyF-Column5-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyF-Column5-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyH-Column5-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyH-Column5-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyD-Column5-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyD-Column5-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyC-Column5-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyC-Column5-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyB-Column5-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyB-Column5-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyA-Column5-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyA-Column5-Body1 p
{
	
}

.TableStyle-1medium-2to5auto-BodyG-Column5-Body1
{
	
}

.TableStyle-1medium-2to5auto-BodyG-Column5-Body1 p
{
	
}


Started as a newbie with Flare 6.1, now using Flare 2024r2.
Report bugs at http://www.madcapsoftware.com/bugs/submit.aspx.
Request features at https://www.madcapsoftware.com/feedback ... quest.aspx
Spectre
Sr. Propeller Head
Posts: 128
Joined: Tue Jun 17, 2008 5:50 am

Re: Both fixed width and autofit columns in same table?

Post by Spectre »

Many thanks for your reply, and your table example, CM.

I use various table styles, for notes, for tables with margins, for tables without margins. Rightly or wrongly, I also use custom columns to apply a specific width to a column - usually the first and second columns - and the custom column has different width settings for print/html.

Whether it's a column in a table style or a custom column, what do you actually do to make a column a "flexible" column? Do you just leave it as Not set? Because in my experience this isn't working for both PDF and HTML outputs.

Cheers.
ChoccieMuffin
Senior Propellus Maximus
Posts: 2650
Joined: Wed Apr 14, 2010 8:01 am
Location: Surrey, UK

Re: Both fixed width and autofit columns in same table?

Post by ChoccieMuffin »

Can't remember off-hand. Could you add my table stylesheet to a project and then look at it within the Table stylesheet editor? That should show you exactly what I've done.
Started as a newbie with Flare 6.1, now using Flare 2024r2.
Report bugs at http://www.madcapsoftware.com/bugs/submit.aspx.
Request features at https://www.madcapsoftware.com/feedback ... quest.aspx
Spectre
Sr. Propeller Head
Posts: 128
Joined: Tue Jun 17, 2008 5:50 am

Re: Both fixed width and autofit columns in same table?

Post by Spectre »

I'll try that, thanks.
Post Reply