The Origin Forum
File Exchange
Try Origin for Free
The Origin Forum
Home | Profile | Register | Active Topics | Members | Search | FAQ | Send File to Tech support
 All Forums
 Origin Forum for Programming
 LabTalk Forum
 Failed to initialize range from string

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

Screensize:
UserName:
Password:
Anti-Spam Code:
Format Mode:
Format: BoldItalicizedUnderlineStrikethrough Align LeftCenteredAlign Right Horizontal Rule Insert HyperlinkUpload FileInsert Image Insert CodeInsert QuoteInsert List
   
Message:

* HTML is OFF
* Forum Code is ON
Smilies
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Clown [:o)]
Black Eye [B)] Eight Ball [8] Frown [:(] Shy [8)]
Shocked [:0] Angry [:(!] Dead [xx(] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

T O P I C    R E V I E W
ds755 Posted - 05/22/2020 : 10:21:50 AM
Origin Ver. and Service Release (Select Help-->About Origin): OriginPro 2020 (64-bit) SR1
Operating System: Windows 8.1

Hello,

Does anyone know why the two lines of code below behave differently?

Idmax = max([%H]1!col(H)); // Error
Idmax = max(col(H)); // Works

It should be the same. The top line is treated as a string.
3   L A T E S T    R E P L I E S    (Newest First)
ds755 Posted - 05/23/2020 : 06:11:45 AM
I understand.

Nikolay's suggestion works.
cpyang Posted - 05/22/2020 : 10:49:52 PM
The notation to access any book sheet is supported for column formula and cell formula only.

To use such in a LT script, you need to define a range variable:

range aa=[%H]1!col(H);i=max(aa);i=;


Formula runs some newer code, but we did not improve the general LT interpreter for such.

CP
nick_n Posted - 05/22/2020 : 10:37:56 AM
Hi,
Try:
max([%H]1!H)=;

Nikolay

The Origin Forum © 2020 Originlab Corporation Go To Top Of Page
Snitz Forums 2000