The SQL MINUS functionality can be simulated in JMP by data table "Update" method. It works like this: 
- take two data tables, which have some common data
- add a dummy column with all values as "1" to first dt;
- add a dummy column with the same name to the second dt, but this time with all values as "0";
- "update" first dt with second dt by matching columns (excluding dummy ones!)
After the update, dummy column in first table will have "0" for rows that are matched to the second dt, and "1" for rows that are different. What is left at this point is to subset all this rows with dummy value "1" to get data table with differences.
Here is a function, which can get difference between two data tables using method described above, and a couple examples of using it.    
  style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'">/////////////////////////////////////////////////////////////////////////////////
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'">//Function 
  jmp_SQL_MINUS
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'">//
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'">//performs 
  substraction on data sets, similar to "SQL MINUS"
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'">//
  style="mso-spacerun: yes">  result_dt =  dt1 - dt2 
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'">//
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'">//MUST have 
  at least one column with similar name in BOTH data tables
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'">//
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'">//Arguments:
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'">//
  style="mso-spacerun: yes">  dt1 - first table
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'">//
  style="mso-spacerun: yes">  dt2 - second table
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'">//
  style="mso-spacerun: yes">  new_table_name - name of the resulting 
  table
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'">/////////////////////////////////////////////////////////////////////////////////
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  
  style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">jmp_SQL_MINUS 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">=
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: #0000dd; FONT-FAMILY: 'Courier New'">Function
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">(
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  {dt1
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  dt2
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  new_table_name}
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      {Default 
  Local}
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      
  style="mso-spacerun: yes">     
  
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'">//Get list 
  of columns with matching names between 2 tables
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      cl1 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">=
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> dt1 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'"><<
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> get column 
  names( string )
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">;
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      cl2 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">=
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> dt2 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'"><<
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> get column 
  names( string )
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">;
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      dt2_nc 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">=
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: #0000dd; FONT-FAMILY: 'Courier New'">N 
  Cols
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">(
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> dt2 
  )
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">;
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      col_str 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">=
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: purple; FONT-FAMILY: 'Courier New'">"Match 
  Columns("
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">;
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      
  style="FONT-SIZE: 10pt; COLOR: #0000dd; FONT-FAMILY: 'Courier New'">For
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">(
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> ii 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">=
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: teal; FONT-FAMILY: 'Courier New'">1
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> ii 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'"><=
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  dt2_nc
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  ii
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">++,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 2">            
  
  style="FONT-SIZE: 10pt; COLOR: #0000dd; FONT-FAMILY: 'Courier New'">If
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">(
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: #0000dd; FONT-FAMILY: 'Courier New'">Contains
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">(
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  cl1
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  cl2[ii] )
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 3">                  
  col_str 
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">=
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> col_str 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">||
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: purple; FONT-FAMILY: 'Courier New'">":Name(\!""
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">||
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  cl2[ii] 
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">||
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: purple; FONT-FAMILY: 'Courier New'">"\!")==:Name(\!""
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">||
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  cl2[ii] 
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">||
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: purple; FONT-FAMILY: 'Courier New'">"\!")"
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">||
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: #0000dd; FONT-FAMILY: 'Courier New'">If(
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">ii
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">==
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">dt2_nc
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: purple; FONT-FAMILY: 'Courier New'">""
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: purple; FONT-FAMILY: 'Courier New'">","
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">)
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
    style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 2">            
  )
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      
  )
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">;
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      col_str 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">=
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> col_str 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">||
  style="FONT-SIZE: 10pt; COLOR: purple; FONT-FAMILY: 'Courier New'">")"
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">;
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      
  
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'">//Build 
  "update" expression using template
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      column_expr 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">=
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: #0000dd; FONT-FAMILY: 'Courier New'">Parse
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">(
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> col_str 
  )
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">;
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      template_expr 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">=
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: #0000dd; FONT-FAMILY: 'Courier New'">Name 
  Expr
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">(
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> dt1 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'"><<
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  Update( With( _dt2_ )
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> _col_list_ 
  ) )
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">;
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      update_expr 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">=
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: #0000dd; FONT-FAMILY: 'Courier New'">Substitute
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">(
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: #0000dd; FONT-FAMILY: 'Courier New'">Name 
  Expr
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">(
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  template_expr )
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 2">            
  
  style="FONT-SIZE: 10pt; COLOR: #0000dd; FONT-FAMILY: 'Courier New'">Expr
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">(
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> _dt2_ 
  )
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: #0000dd; FONT-FAMILY: 'Courier New'">Name 
  Expr
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">(
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: #0000dd; FONT-FAMILY: 'Courier New'">Data 
  Table
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">(
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> dt2 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'"><<
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> get name 
  ) )
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 2">            
  
  style="FONT-SIZE: 10pt; COLOR: #0000dd; FONT-FAMILY: 'Courier New'">Expr
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">(
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> _col_list_ 
  )
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: #0000dd; FONT-FAMILY: 'Courier New'">Name 
  Expr
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">(
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> column_expr 
  )
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      
  )
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">;
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  
  style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'">//Create 
  helper column with unique name
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      dt1 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'"><<
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: #0000dd; FONT-FAMILY: 'Courier New'">New 
  Column
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">(
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: purple; FONT-FAMILY: 'Courier New'">"_f_l_a_g_"
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  numeric
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  continuous
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> Set Each 
  Value( 
  style="FONT-SIZE: 10pt; COLOR: teal; FONT-FAMILY: 'Courier New'">1
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> ) 
  )
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">;
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      dt2 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'"><<
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: #0000dd; FONT-FAMILY: 'Courier New'">New 
  Column
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">(
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: purple; FONT-FAMILY: 'Courier New'">"_f_l_a_g_"
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  numeric
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  continuous
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> Set Each 
  Value( 
  style="FONT-SIZE: 10pt; COLOR: teal; FONT-FAMILY: 'Courier New'">0
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> ) 
  )
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">;
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      
  
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'">//Run 
  "update" expression. After this step helper column shows "0" for values that 
  are matched between two tables, 
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'">//and "1" 
  for values that are different
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      
  style="FONT-SIZE: 10pt; COLOR: #0000dd; FONT-FAMILY: 'Courier New'">Eval
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">(
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> update_expr 
  )
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">;
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      
  
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'">//Extracting 
  list of values that are not matched
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      dt1 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'"><<
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> Clear 
  Select
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">;
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      dt1 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'"><<
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> Clear 
  Column Selection
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">;
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      dt1 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'"><<
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> Select 
  Where( 
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">:
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">Name( 
  
  style="FONT-SIZE: 10pt; COLOR: purple; FONT-FAMILY: 'Courier New'">"_f_l_a_g_"
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> ) 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">==
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: teal; FONT-FAMILY: 'Courier New'">1
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  )
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">;
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      dt3 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">=
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> dt1 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'"><<
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  Subset( Output Table( new_table_name )
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> Copy 
  formula( 
  style="FONT-SIZE: 10pt; COLOR: teal; FONT-FAMILY: 'Courier New'">0
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  )
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> Ignore 
  Missing (
  style="FONT-SIZE: 10pt; COLOR: teal; FONT-FAMILY: 'Courier New'">0
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">)
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  )
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">;
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      
  
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'">//Cleanup
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      dt1 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'"><<
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> Delete 
  Column( 
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">:
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">Name( 
  
  style="FONT-SIZE: 10pt; COLOR: purple; FONT-FAMILY: 'Courier New'">"_f_l_a_g_"
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> ) 
  )
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">;
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      dt2 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'"><<
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> Delete 
  Column( 
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">:
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">Name( 
  
  style="FONT-SIZE: 10pt; COLOR: purple; FONT-FAMILY: 'Courier New'">"_f_l_a_g_"
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> ) 
  )
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">;
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      dt3 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'"><<
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> Delete 
  Column( 
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">:
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">Name( 
  
  style="FONT-SIZE: 10pt; COLOR: purple; FONT-FAMILY: 'Courier New'">"_f_l_a_g_"
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> ) 
  )
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">;
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  
  style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'">//Outputting 
  result
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      dt3
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">;
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">)
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">;
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  
  style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'">/////////////////////////////////////////////////////////////////////////////////
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'">/////////////////////////////////////////////////////////////////////////////////
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'">//Example of 
  usage
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  
  style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'">//open "big 
  table"
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">dt 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">=
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: #0000dd; FONT-FAMILY: 'Courier New'">Open
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">(
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: purple; FONT-FAMILY: 'Courier New'">"$SAMPLE_DATA/Big 
  Class.jmp"
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  )
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">;
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
    style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  
  style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'">//subset of 
  "big table", only 10 rows and a couple of columns
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">sub_dt 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">=
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: #0000dd; FONT-FAMILY: 'Courier New'">Data 
  Table
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">(
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: purple; FONT-FAMILY: 'Courier New'">"Big 
  Class"
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> ) 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'"><<
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  Subset(
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      Copy 
  formula( 
  style="FONT-SIZE: 10pt; COLOR: teal; FONT-FAMILY: 'Courier New'">0
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  )
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      Sample 
  Size( 
  style="FONT-SIZE: 10pt; COLOR: teal; FONT-FAMILY: 'Courier New'">10
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  )
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      columns( 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">:
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">name
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">:
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">age 
  )
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">)
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">;
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  
  style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'">//result 
  data table is a difference between "big" table and its subset
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">result_dt 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">=
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  jmp_SQL_MINUS( dt
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  sub_dt
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: purple; FONT-FAMILY: 'Courier New'">"Difference 
  between dt and sub_dt"
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  )
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">;
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  
  style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  
  style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'">/////////////////////////////////////////////////////////////////////////////////
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'">//Second 
  example
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  
  style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'">//Open big 
  data table
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">dt 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">=
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: #0000dd; FONT-FAMILY: 'Courier New'">Open
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">(
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: purple; FONT-FAMILY: 'Courier New'">"$SAMPLE_DATA/Equity.jmp"
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  )
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">;
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
    style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  
  style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'">//Create 
  data table with items that needs to be excluded
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">sub_dt 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">=
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: #0000dd; FONT-FAMILY: 'Courier New'">New 
  Table
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">(
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: purple; FONT-FAMILY: 'Courier New'">"Exclude 
  Items"
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      Add 
  Rows( 
  style="FONT-SIZE: 10pt; COLOR: teal; FONT-FAMILY: 'Courier New'">2
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  )
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      
  style="FONT-SIZE: 10pt; COLOR: #0000dd; FONT-FAMILY: 'Courier New'">New 
  Column
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">(
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: purple; FONT-FAMILY: 'Courier New'">"REASON"
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  Character
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  Nominal
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> Set 
  Values( {
  style="FONT-SIZE: 10pt; COLOR: purple; FONT-FAMILY: 'Courier New'">"HomeImp"
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: purple; FONT-FAMILY: 'Courier New'">"DebtCon"
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">}
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> ) 
  )
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  style="mso-tab-count: 1">      
  style="FONT-SIZE: 10pt; COLOR: #0000dd; FONT-FAMILY: 'Courier New'">New 
  Column
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">(
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: purple; FONT-FAMILY: 'Courier New'">"JOB"
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  Character
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  Nominal
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> Set 
  Values( {
  style="FONT-SIZE: 10pt; COLOR: purple; FONT-FAMILY: 'Courier New'">"Other"
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: purple; FONT-FAMILY: 'Courier New'">"Mgr"
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">}
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> ) 
  )
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">)
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">;
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  
  style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: green; FONT-FAMILY: 'Courier New'">//result 
  data table has only filtered items
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">result_dt 
  
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">=
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  jmp_SQL_MINUS( dt
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  sub_dt
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">,
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  
  style="FONT-SIZE: 10pt; COLOR: purple; FONT-FAMILY: 'Courier New'">"Filtered"
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'"> 
  )
  style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: 'Courier New'">;
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
   style="MARGIN-BOTTOM: 0pt; LINE-HEIGHT: normal; mso-layout-grid-align: none">
  style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Courier New'">
  
style="MARGIN-BOTTOM: 0pt">