Use variable in IN statement

Gianfranco
Member Posts: 8
Anybody succeeded in using a variable with a IN statement?
Sort of
IF AnyRecord.Field IN [TextVariable] THEN ...
where TextField should contain something 'VALUE1,VALUE2,VALUE3'.
Thanks
Sort of
IF AnyRecord.Field IN [TextVariable] THEN ...
where TextField should contain something 'VALUE1,VALUE2,VALUE3'.
Thanks
0
Answers
-
I don't know which NAV version you use! If NAV2009 SP1 RTC or newer then you can try .NET interoperability using List.Contains0
-
IF SomeVar IN [TextVariable] THEN ... has no chance to work. You can try to think of IN operator as a series of ORs on every argument inside the square brackets. In your case IF SomeVar IN [TextVariable] THEN... is equivalent to IF SomeVar = TextVariable THEN... as you have only one argument inside the square brackets.
Without restoring to .NET you can write a function performing the check, someting like this:Contains(aVar, aList) { EXIT( (aVar = aList) OR (STRPOS(aList, aVar+',') = 1) OR (STRPOS(aList, ','+aVar+',') > 1) OR (STRPOS(aList, ','+aVar) = STRLEN(aList) - STRLEN(aVar) ) ) }
Slawek Guzek
Dynamics NAV, MS SQL Server, Wherescape RED;
PRINCE2 Practitioner - License GR657010572SG
GDPR Certified Data Protection Officer - PECB License DPCDPO1025070-2018-030 -
2009r2 classic client - square brackets for IN statementMark Tyler
Pacific City, OR0
Categories
- All Categories
- 73 General
- 73 Announcements
- 66.6K Microsoft Dynamics NAV
- 18.7K NAV Three Tier
- 38.4K NAV/Navision Classic Client
- 3.6K Navision Attain
- 2.4K Navision Financials
- 116 Navision DOS
- 851 Navision e-Commerce
- 1K NAV Tips & Tricks
- 772 NAV Dutch speaking only
- 617 NAV Courses, Exams & Certification
- 2K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 320 Dynamics CRM
- 111 Dynamics GP
- 10 Dynamics SL
- 1.5K Other
- 990 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 35 Design Patterns (General & Best Practices)
- 1 Architectural Patterns
- 10 Design Patterns
- 5 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1.1K General Chat
- 1.6K Website
- 83 Testing
- 1.2K Download section
- 23 How Tos section
- 252 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions