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.8K Product Ideas
- 1.8K Ideas Exchange
- 1.5K Connect
- 1.2K Connectors
- 300 Workbench
- 6 Cloud Amplifier
- 8 Federated
- 2.9K Transform
- 100 SQL DataFlows
- 616 Datasets
- 2.2K Magic ETL
- 3.9K Visualize
- 2.5K Charting
- 738 Beast Mode
- 56 App Studio
- 40 Variables
- 685 Automate
- 176 Apps
- 452 APIs & Domo Developer
- 47 Workflows
- 10 DomoAI
- 36 Predict
- 15 Jupyter Workspaces
- 21 R & Python Tiles
- 394 Distribute
- 113 Domo Everywhere
- 275 Scheduled Reports
- 6 Software Integrations
- 124 Manage
- 121 Governance & Security
- 8 Domo Community Gallery
- 38 Product Releases
- 10 Domo University
- 5.4K Community Forums
- 40 Getting Started
- 30 Community Member Introductions
- 108 Community Announcements
- 4.8K Archive