Skip to main content
Announcements
Defect acknowledgement with Nprinting Engine May 2022 SR2, please READ HERE
cancel
Showing results for 
Search instead for 
Did you mean: 
emteam162
Creator
Creator

Display value straight table

Hi,

I have straight table as

Dim1Dim2Expression1Expression2
az12%56%
bw-40%2%
cx33%-45%
dy17%-17%
em-60%

I want to display only rows red

the role are if (Exp1 <-30% or Exp2 <-30% then display value of each column)

how can i do that wiht nprinting

Many thanks for your help

Said

1 Solution

Accepted Solutions
jonathandienst
Partner - Champion III
Partner - Champion III

Or as long as you are using a straight table, create expression1 and expression2 normally Then create two more expressions:

=If(Column(1) < -30 Or Column(2) < -30, Column(1))

=If(Column(1) < -30 Or Column(2) < -30, Column(2))

and hide expression 1 and 2 in the presentation tab. This has the advantage that each expression is only evaluated once.

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein

View solution in original post

3 Replies
jonathandienst
Partner - Champion III
Partner - Champion III

Expression 1

=If(...expression 1... < -30 Or ... expression 2... < -30, ...expression 1...)

Expression 2

=If(...expression 1... < -30 Or ... expression 2... < -30, ...expression 2...)

Substitute your actual expressions into the above

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
jonathandienst
Partner - Champion III
Partner - Champion III

Or as long as you are using a straight table, create expression1 and expression2 normally Then create two more expressions:

=If(Column(1) < -30 Or Column(2) < -30, Column(1))

=If(Column(1) < -30 Or Column(2) < -30, Column(2))

and hide expression 1 and 2 in the presentation tab. This has the advantage that each expression is only evaluated once.

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
emteam162
Creator
Creator
Author

Hi,

Its work

many thanks

Said