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); }
