Is it possible to past a list of 500 items into th...
# general
c
Is it possible to past a list of 500 items into this list in a saved search?
k
Why are you doing this?
I'd be tempted to create a custom field on my item records and then use that as a filter in my search instead of manually copy/pasting 500 items in. I'd expect that there's an issue with your 6th or 7th row, and if you change it it will work to copy paste. You will be limited to 1k characters though
m
Much easier to paste a list with analytics
For a saved search, you can create a formula in Excel
="'" & A2 & "',"
and then copy this into a formula
CASE WHERE {field} IN (<paste here>) THEN 1 END
✔️ 2
z
Editting the search in the console by passing in an array of values in the criteria is how I would try doing that.
Otherwise Kevin's answer is easier to manage and report on.
m
I've found that formula WHERE IN is magnitudes faster than any of
c
We can't change anything on the production env so we're stuck with searches, SuiteTalk, and ODBC
I just created an analytics workbook, that might be easier than searches
@KevinJ of Kansas because I need to get a lot of data out that's being sold to another company
they're divesting a subsidiary so all related data needs packaging up and sending.
r
if you have ODBC could you not perform there easily with a joined table on your side of odbc?
a
Go with @michoel’s advice. You make a long formula. You can easily get the items in the format 'ITEM1','ITEM2', etc. using a macro in notepad++ or transposing the list in excel and saving as csv
but basically you're saying where item in (the list) then 1 else 0 is greater than 1...it will return everything in your list
otherwise....make a custom list\record, import the items there...and then make your search off of this joined to the item
not ideal...
r
ak47, I thought he said he is limited to searches and not creating records
hopefully soon NS will allow the ability to upload data into analytics via excel or other means on the fly
this would make it super easy
the big BI players allow data connections and uploading flat or structured files. 2028. R2
but you also said you have suittalk, so you can drop in a restlet fast to export saved searches and join in you favorite tool, even excel if you prefer