- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
% 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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: % in Column Name
Created:
Oct 6, 2022 03:19 PM
| Last Modified: Oct 6, 2022 12:23 PM
(681 views)
| Posted in reply to message from Data_Mike 10-06-2022
Try following syntax
:"% Adapter Bases"n
Scripting Guide > JSL Building Blocks > JSL Syntax Rules > Names
-Jarmo