cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to move from signal modeling to system modeling at the first JMP Aerospace Analytics webinar. Register. June 18, 1 p.m. US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
Data_Mike
Level I

% in Column Name

Hello All,

 

There is an auto generated report which has the column name as % Adapter Bases. 

 

I want to update from this report, however when I use the column name it gives me an error since % is in the beginning. Is there any workaround to this?

 

Data Table( "all data" ) << Update (
With( dtv ),
Match Columns( :SampleID = :sampleID),
Add Columns from Update table( :% Adapter Bases ),
);

 

Thanks!

Mike

1 REPLY 1
jthi
Super User

Re: % in Column Name

 Try following syntax

:"% Adapter Bases"n

Scripting Guide > JSL Building Blocks > JSL Syntax Rules > Names 

-Jarmo

Recommended Articles