Best Of
Re: Combining 2 datasets together
@zuchu I suggest joining your datasets by Quote # rather than appending so that the corresponding quote and sale are on the same row. Then you can create a simple formula like the one below to check whether that quote generated a sale:
case when `Sales.Quote#` is null then 'No' else 'Yes' end
Re: REPOST: Dojo Forum for Beta Testing
You'll need to reach out to Chuck Irwin (@chucki) to get access to the beta features and the Dojo Beta Forum.
Re: REPOST: Dojo Forum for Beta Testing
Hi @Sam1
There actually is a forum for beta features - https://dojo.domo.com/categories/beta-group. You may not have access and might want to reach out to @chucki
Re: Using RegEx to Extract Date
Try this:
REGEXP_REPLACE(`string`, '^.*(\d{2}-[A-z]{3}-\d{4}).*$', '$1')
You need to replace the entire string not just the substring. This is why there's ^.* and .*$ to match anything before and after the date value respectively.

