- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
hide and exclude interactive
This post originally written in French and has been translated for your convenience. When you reply, it will also be translated back to French .
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: masquer et exclure interactif
I believe the following script will do what you are asking. Full script with sample data table attached.
cdg = Column Dialog ("Input Columns",
cols = Col List ("Columns", Min Col (1), Data Type ("Numeric"));
);
for each ({i}, cdg["cols"],
dt << select where (i == 0) << Hide and Exclude;
);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: masquer et exclure interactif
Is the Data Filter what you're looking for (Rows...Data Filter)? Selecting the "show" and "include" checkboxes makes the hide and exclude interactive. If not, can you clarify what you need a bit more, please?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: hide and exclude interactive
This post originally written in French and has been translated for your convenience. When you reply, it will also be translated back to French .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: masquer et exclure interactif
I believe the following script will do what you are asking. Full script with sample data table attached.
cdg = Column Dialog ("Input Columns",
cols = Col List ("Columns", Min Col (1), Data Type ("Numeric"));
);
for each ({i}, cdg["cols"],
dt << select where (i == 0) << Hide and Exclude;
);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: hide and exclude interactive
This post originally written in French and has been translated for your convenience. When you reply, it will also be translated back to French .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: masquer et exclure interactif
Yes, assuming you're looking for the tabulate platform, here's code to grab the first of the selected columns (you could remove the [1] portion to use all the selected columns):
tab = Tabulate(
Show Control Panel( 0 ),
Set Format( Uniform Format( 10, 2 ) ),
Add Table(
Column Table( Analysis Columns( :Y ), Statistics( Mean, Std Dev ) ),
Row Table( Grouping Columns( cdg["cols"][1] ) )
)
);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: hide and exclude interactive
Modifying your code a bit, I get exactly what I was looking for
Thanks for your help !
This post originally written in French and has been translated for your convenience. When you reply, it will also be translated back to French .