Is there any way to get smart sheet rows based on column value - smartsheet-api

I want to use smart sheet api to read sheet data. my sheet has changedtm column. I want to fetch rows which are greater than certain date. is there any way to do this using smart sheet API

You can't do this kind of filtering via the Smartsheet API exactly. One approach would be you could do a GET Sheet request and use the columnIds query string parameter to provide the id number of the specific column you are looking to review. Then you would get back a response that only contained data for that specific column. The filtering based on the date values would then have to be done by you in your code.
If you will need other data in the rows I would then just do the GET Sheet request to get all of the data in the sheet and do the filtering of the response in your code.

Related

How to make a cell Blank when no data is being delivered to it

I have made a sheet to track equipment for the company I work for. I have used a script to populate last edited date to a column when a specific column is populated with data. My issue is that once I remove the data from column "A", the date stays in column "B". Is there some sort of formula or script I can use to make the column blank again once it is not being fed data.
I'm using google sheets.
Thank you.
Kind regards.

Is it possible to use Get Sheet and filter by only created date?

I currently am using the get sheet method and then parsing through the sheet to get the rows created on today's date. Is it possible to filter to only get the rows using the filter parameter?
If there is a curl (postman) example you can point to that would be great.
Unfortunately, this cannot be done through the API at this time.

Dynamically hide table in JasperReports

I have a Report, where i list the invoices & details between a particular date range. I have a table for Charges and i have to display it only for those invoices that have charges details.Otherwise it should not be displayed and the space has to be compacted.
I have tried the solutions given in this thread
I tried applying the "Print-when" condition both on the table and the band, but it is not working for me.
There is a huge space between records, that dont have the charges details.
Should i change it to a subreport instead?
I am not sure whether I have understood your question properly. If you do not want to display the records which does not have data for Charges, then I hope you can achieve this simply using a condition in your query to fetch the data.
For example where Charges != null condition in your table query. This should filter the invoices which does not have data for Charges.
I don't see why the print when expression on the band would not work.
Example: Print When Expression $F{CHARGES_FIELD_VARIABLE}!=null
This should only display the band if there is a value for charges.
If this does not work could you provide us with your xml?

Dynamic Table Of Contents - CR

I am currently using crystal reports to create a price list which MUST have a table of contents. The report is passed a dataset from a stored procedure, though I don't think anything I can do server-side will be able to achieve this.
What my question is really is, is there any way of finding what page a particular value in a group header is on, if I can do this I can obviously create an index page with dynamic page numbers easily.

How to pass multiple values to a single parameter in a Reporting Services report

I have a report in Reporting Services with a text box field in a table that has a Go to report Action. I need a Parameter for specific values to be able to pass to that report. The IN (#Parameter) will not work with multiple values. I have two tables with similar data. One has data for ALL countries and one has data just for Canada. I have one report that I want to Jump To for each table. When the field in the ALL countries table is clicked, I want to pass all the values to a parameter in the Dataset. When the field on the Canada table is clicked, I want to pass just the values for Canada to the Dataset. I can get it to work for one value, but not multiple values. How can I accomplish this?