Multiple orderby and groupby
Good day, I'm trying to get data where my Lot Numbers repeat and I want to consolidate them in 1 single record. This is the code I tried for retreiving the data:
dataString='/data/v1/reserve?filter=Org='+ orgFilter + ', Planner='+ pcFilter + '';//'&groupby=LotNumber';
It does get the records and groups them, but instead of showing for example the Part Number, it displays a number (I assume it's the ID)...
I attach a snapshot of the output of this line of code (replacing the blank quotation marks with the commented string).
Any ideas on what's wrong with this?
Thanks in advance.
Best Answer
-
Martin,
If you don't specify an aggregation for the fields, you'll get the following behavior, as described in the Data API reference on developer.domo.com:
By default, numerical columns are summed and unique entries of non-numerical columns are counted. Can be combined with an aggregation to override this default behavior.
So what you're seeing is count of records for each of the string fields (Part Number, Description, etc.), and a sum for numeric fields (quantity).
If you want to see the part number, you'd need to add it to your groupby clause (groupby=LotNumber,PartNumber). That means, though, that you're going to be getting one record per combination of lot number and part number. If you have multiple lots of the same part, you'll see a record for each lot with the part number repeated on each record.
I hope that helps!
1
Answers
-
Martin,
If you don't specify an aggregation for the fields, you'll get the following behavior, as described in the Data API reference on developer.domo.com:
By default, numerical columns are summed and unique entries of non-numerical columns are counted. Can be combined with an aggregation to override this default behavior.
So what you're seeing is count of records for each of the string fields (Part Number, Description, etc.), and a sum for numeric fields (quantity).
If you want to see the part number, you'd need to add it to your groupby clause (groupby=LotNumber,PartNumber). That means, though, that you're going to be getting one record per combination of lot number and part number. If you have multiple lots of the same part, you'll see a record for each lot with the part number repeated on each record.
I hope that helps!
1 -
Thanks! That fixed my issue.
0
Categories
- All Categories
- 1.9K Product Ideas
- 1.9K Ideas Exchange
- 1.6K Connect
- 1.3K Connectors
- 302 Workbench
- 6 Cloud Amplifier
- 9 Federated
- 2.9K Transform
- 104 SQL DataFlows
- 637 Datasets
- 2.2K Magic ETL
- 3.9K Visualize
- 2.5K Charting
- 762 Beast Mode
- 65 App Studio
- 42 Variables
- 704 Automate
- 182 Apps
- 458 APIs & Domo Developer
- 53 Workflows
- 11 DomoAI
- 39 Predict
- 16 Jupyter Workspaces
- 23 R & Python Tiles
- 401 Distribute
- 116 Domo Everywhere
- 277 Scheduled Reports
- 8 Software Integrations
- 132 Manage
- 129 Governance & Security
- 8 Domo Community Gallery
- 38 Product Releases
- 12 Domo University
- 5.4K Community Forums
- 40 Getting Started
- 30 Community Member Introductions
- 111 Community Announcements
- 4.8K Archive