jaeW_at_Onyx Coach image

https://domousergroup.slack.com/archives/C047QPWLQEP/p1776796094665649 casual reminder that today at 13:30, we will be hosting our session on MCPs and Skills in claude DM me if the invite link isn't working for you! If you missed our previous session, https://datacrew.space/blog/building-apps-with-ai-best-practices-jon-tiritilli

Comments

  • If I understand your question, you're trying to create a parameterized queries. that doesn't really exist in Domo, so you can take a MySQL dataflow esque approach. Basically create a webform with the following columns and JOIN it to every row of your transaction dataset. (then change your parameter values using the webform…
  • I'm pretty sure you want the .appendChild method https://www.geeksforgeeks.org/html-dom-appendchild-method/ function geeks() { var node = document.createElement("LI"); var textnode = document.createTextNode("Web Technology"); node.appendChild(textnode); document.getElementById("gfg").appendChild(node); }