-
Re: Filtering by latest date in table
@User_32265 if you use @GrantSmith 's window function you will only keep rows on that max() date. example. if you had a report where every day you sent the customer table, you could ask for "the…1 -
Re: Shopify - Month over Month % Change Beastmode Help
@DMJerryVuori , you can adapt the design pattern in this video to get the desired result, https://www.youtube.com/watch?v=CDKNOmKClms1 -
Re: Access Token Reporting
@DanBrinton building on this theme. PROPOSAL Domo should add a field "domo instance" to the "Access Token" Account type. PROBLEM An Access Token Account object does not store the …2 -
Re: Period Over Period Calculation Challenges
@RocketMichael ( (CASE when `Period Type`='Current' then `Shipped CoGS`end) - (CASE when `Period Type`= 'Last Month' then `Shipped CoGS` end) ) / (CASE when `Period Type`='Last Month' then `Shipped C…3 -
Re: Errors when using domolibrary with client ID and secret
no. you cannot use DeveloperAuth AND hit undocumented APIs. you must use TokenAuth.1