-
When you insert a filter and it pulls fields with nothing in them....
Hey just thought I would post a solution to a problem that I had recently. I was filtering out any sales that had "warranty" in the comments, but it would take out any sales where the comments box was empty. To fix this I entered a beast mode to get rid of the NULL values in my comments column. CASE WHEN `SO_Comments` IS…
-
Workbench 3 issues with automatic upload
I just imported all the files from workbench 2 to workbench 3 and am able to upload the data into DOMO successfully if I do it manually, but when it goes to update it as per the schedule, it isn't working. Does anyone else have this issue or know if I'm doing something wrong?
-
How to add multiple commands in one Transform inside a dataflow?
How do I make so I can insert multiple commands in one Transform box. For example, I am adding multiple indexes and don't want to have to create them in multiple transforms. create index SO1 on tech_salesorders(Sales_Order_ID) create index SO2 on tech_salesorders(Customer_Organization_ID) create index SOL1 on…