- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Mar 21, 2023 01:08 PM
Hi,
I'm trying to patch call an empty cell which is always be in the last/current row. Is there a way to do this with a parameter?
Solved! Go to Solution.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Mar 23, 2023 01:24 AM - edited Mar 23, 2023 01:50 AM
if you add an autonumber field and then sort by that field descending, then the first record would be the latest added record. This would need 2 calls to the api though.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Mar 21, 2023 08:07 PM
There is no way to identify the “last row” in a table without requesting all of the rows in the table or view. This is because different views of the same table can include different records in different orders.
In order to update a cell value, you need to know the record ID of the record, not just it’s relative position.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Mar 23, 2023 01:24 AM - edited Mar 23, 2023 01:50 AM
if you add an autonumber field and then sort by that field descending, then the first record would be the latest added record. This would need 2 calls to the api though.