-
Re: Any way to view schedule for dataflows?
import os import requests from getpass import getpass import json import sys DOMO_INSTANCE = os.getenv("DOMO_INSTANCE", "YOUR_INSTANCE") # <-- set this or export DOMO_INSTANCE …1 -
Re: Execution List Impossible To Investigate Issues
This sounds like a feature request rather than a question. Is the following (below) a correct summation? If so, maybe a forum admin could move it to Feature Request: Improve Filtering and Visibility …1 -
Re: Splitting Appointments
Here's a break down of the way I was thinking. Apologies my docking unit just died and I have no monitors. I'm not used to using a laptop screen…lol.. AppointmentID,AppointmentDate,Provider…2 -
Re: Building a “Current Month vs Previous Month vs Last Year” comparison card (or dashboard) in Domo?
You can do date comparisons on a normal table chart….or a pivot chart but its not necessary. Look back at past forum questions and you see references with formulas such as CY, PY, P2Y (current year, …1 -
Re: Beast Mode: build “expiration at end of next day” from a Timestamp
Try this CASE WHEN `Voucher Create Date` IS NOT NULL THEN DATE_SUB(DATE_ADD(DATE(`Voucher Create Date`), INTERVAL 2 DAY), INTERVAL 1 SECOND) END1
