Currently, I am using Alteryx Designer to connect with Smartsheet API and on Alteryx there is the "Choose Table or Specify Query" box which has "SQL Editor" where we have the following code:
SELECT * FROM "Proj PAGE 1__1234567891234567s_" as AM WHERE AM."ABC DEF" IS NOT NULL
Now, what I want to do is use Smartsheet API using Python to pass the above query. The reason is because I want the data where column "ABC DEF" is NOT NULL.
I am able to connect to the Smartsheet API and fetch the entire sheet but I am not aware of how to use the condition to request subset data.
Does anyone know how to achieve this result?
Not the most efficient solution, but once you've fetched the data from Smartsheet, you could find a specific column in it ("ABC DEF"), and then filter out the rows based on the condition that the value in the "ABC DEF" column isn't null.