-
Re: Automatically Sort Rows in Sheets
That is just a linux shell command using the curl program2 · -
Re: google contents of a cell
You could use the API to update the sheet every hour or so and if the tracking number is not blank set the hyperlink of the cell to the fedex link with the tracking number /marc1 · -
Re: Automatically Sort Rows in Sheets
@:Loann. Yes the Smartsheet API is a REST which in a simple manner is a bunch of urls that either take data in the url itself of have the data sent along with the url or both. To sort a sheet curl --…2 · -
Re: Progress Bar on Smartsheet Forms
You can use a google form which does have paging and use the smartsheet connector to deliver the data to your smartsdheet. /marc1 · -
Re: Automatically Sort Rows in Sheets
We solved this problem with the api. We run a single line curl command every hour curl --silent "https://api.smartsheet.com/2.0/sheets/$Sheet_ID/sort" -H "Authorization: Bearer $token&…5 ·